CF298B.Sail

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The polar bears are going fishing. They plan to sail from (sx,sy)(s_{x},s_{y}) to (ex,ey)(e_{x},e_{y}) . However, the boat can only sail by wind. At each second, the wind blows in one of these directions: east, south, west or north. Assume the boat is currently at (x,y)(x,y) .

  • If the wind blows to the east, the boat will move to (x+1,y)(x+1,y) .
  • If the wind blows to the south, the boat will move to (x,y1)(x,y-1) .
  • If the wind blows to the west, the boat will move to (x1,y)(x-1,y) .
  • If the wind blows to the north, the boat will move to (x,y+1)(x,y+1) .

Alternatively, they can hold the boat by the anchor. In this case, the boat stays at (x,y)(x,y) . Given the wind direction for tt seconds, what is the earliest time they sail to (ex,ey)(e_{x},e_{y}) ?

输入格式

The first line contains five integers t,sx,sy,ex,eyt,s_{x},s_{y},e_{x},e_{y} (1<=t<=105,109<=sx,sy,ex,ey<=109)(1<=t<=10^{5},-10^{9}<=s_{x},s_{y},e_{x},e_{y}<=10^{9}) . The starting location and the ending location will be different.

The second line contains tt characters, the ii -th character is the wind blowing direction at the ii -th second. It will be one of the four possibilities: "E" (east), "S" (south), "W" (west) and "N" (north).

输出格式

If they can reach (ex,ey)(e_{x},e_{y}) within tt seconds, print the earliest time they can achieve it. Otherwise, print "-1" (without quotes).

输入输出样例

  • 输入#1

    5 0 0 1 1
    SESNW
    

    输出#1

    4
    
  • 输入#2

    10 5 3 3 6
    NENSWESNEE
    

    输出#2

    -1
    

说明/提示

In the first sample, they can stay at seconds 11 , 33 , and move at seconds 22 , 44 .

In the second sample, they cannot sail to the destination.

首页