-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP8911.cpp
75 lines (66 loc) · 1.85 KB
/
P8911.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <iostream>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while(T--) {
string cmd;
cin >> cmd;
int x = 0, y = 0;
int look = 3; // E 0 W 1 S 2 N 3
int maxX = 0, minX = 0;
int maxY = 0, minY = 0;
for(int i = 0; i < cmd.length(); i++) {
if(cmd[i] == 'F') {
if(look == 3) {
x++;
} else if(look == 2) {
x--;
} else if(look == 1) {
y--;
} else if(look == 0) {
y++;
}
} else if(cmd[i] == 'B') {
if(look == 3) {
x--;
} else if(look == 2) {
x++;
} else if(look == 1) {
y++;
} else if(look == 0) {
y--;
}
} else if(cmd[i] == 'L') {
if(look == 3) {
look = 1;
} else if(look == 2) {
look = 0;
} else if(look == 1) {
look = 2;
} else if(look == 0) {
look = 3;
}
} else if(cmd[i] == 'R') {
if(look == 3) {
look = 0;
} else if(look == 2) {
look = 1;
} else if(look == 1) {
look = 3;
} else if(look == 0) {
look = 2;
}
}
minX = min(minX, x);
maxX = max(maxX, x);
minY = min(minY, y);
maxY = max(maxY, y);
}
cout << (maxX - minX) * (maxY - minY) << "\n";
}
return 0;
}