0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:25:28 +00:00
OI-codes/problem/P2689/P2689.cpp
2020-11-03 16:11:32 +08:00

35 lines
685 B
C++

#include<bits/stdc++.h>
using namespace std;
int main() {
int x1, y1, x2, y2, t, ans = 0;
char c;
cin >> x1 >> y1 >> x2 >> y2 >> t;
for(int i = 1 ; i <= t ; i++) {
cin >> c;
if(c == 'E' && y1 < y2) {
y1++;
ans++;
}
else if(c == 'W' && y1 > y2) {
y1--;
ans++;
}
else if(c == 'N' && x1 < x2) {
x1++;
ans++;
}
else if(c == 'S' && x1 > x2) {
x1--;
ans++;
}
if(x1 == x2 && y1 == y2) {
cout << ans << endl;
return 0;
}
}
cout << -1 << endl;
return 0;
}