MAJMUN - MAJMUN

Coming home after a hard day at school, Ivica is ready to relax playing the computer game "Monkey & Banana". In the game, the monkey is located in a jungle, modeled as a coordinate plane. Every point with integer coordinates represents a tree. The monkey is initially located at tree (XM, YM) facing up i.e. towards the tree (XM, YM +1).The monkey is controlled with the keys 0 to 7. When the key K is pressed, the monkey turns 45 degrees left K times and then jumps to the first tree he sees in his new direction.

The game lasts until the monkey jumps exactly N times. After that, the score is calculated from the distance between the monkey and the banana tree, which is located at coordinates (XB ,YB). The lower the distance, the bigger the score. Ivica played one game and is now interested if he could have done better changing at most one key press. Write a program that determines the smallest possible ending (Euclidean) distance between the monkey and the banana tree (it is possible that the current score cannot be improved).

Input

The first line of input contains our integers XM, YM, XB and YB (0 <= XM, YM, XB, YB <= 1 000 000), the initial coordinates of the monkey and the coordinates of the banana tree. The next line contains the integer N (1 ≤N ≤100 000), the number of jumps (key presses) in the game played.

The last line contains a string of N digits between 0 and 7, the keys that Ivica pressed.

Output

Output a single decimal number, the smallest achievable distance. Your output must be accurate to ±0.01.

Example

Input:
0 0 2 3
5
15102

Output:
0.000000
Input:
5 5 10 5
3
000

Output:
2.000000
Input:
0 0 10 10
9
700003000

Output:
1.414214

Được gửi lên bởi:sieunhan
Ngày:2009-01-23
Thời gian chạy:1s
Giới hạn mã nguồn:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Ngôn ngữ cho phép:Tất cả ngoại trừ: ERL GOSU JS-RHINO PERL6 PYPY RUST SED
Nguồn bài:Croatia national contest 2008

© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.