mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
32 lines
666 B
C++
32 lines
666 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;
|
|
}
|