반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- dfs
- @P0
- 성적평가
- upper_bound
- 경력
- msSQL
- 백트래킹
- 처우산정
- 이분탐색
- OFFSET
- 물채우기
- 처우협의
- Docker
- 파라메트릭
- 13908
- 오퍼레터
- boj #19237 #어른 상어
- 매개변수탐색
- compose
- 백준
- 연결요소
- BFS
- 소프티어
- 퇴사통보
- incr
- 기술면접
- 6987
- Kafka
- softeer
- BOJ
Archives
- Today
- Total
기술 블로그
2174번 로봇 시뮬레이션 본문
728x90
반응형
Simulation 문제다.
내가 너무 무식하게 푼 것 같아서, 코드가 좀 더럽다.
핵심은 칸을 이동할 때,
예를 들어 원래 있던 칸을 x라고 하고, x + 3이 목표라고 하면
x + 1 비교, x + 2 비교 ... x + i
이렇게 하나씩 비교를 해야한다.
https://www.acmicpc.net/problem/2174
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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; int map[101][101] = { 0, }; pair<int, int> robot[101]; char rcp[101]; int A = 0, B = 0; int N = 0, M = 0; void robot_move(int rn, char v, int c) { if (v == 'L') { if (rcp[rn] == 'E') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'N'; else if (cnt == 2) rcp[rn] = 'W'; else if (cnt == 3) rcp[rn] = 'S'; else if (cnt == 0) rcp[rn] = 'E'; } else if (rcp[rn] == 'W') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'S'; else if (cnt == 2) rcp[rn] = 'E'; else if (cnt == 3) rcp[rn] = 'N'; else if (cnt == 0) rcp[rn] = 'W'; } else if (rcp[rn] == 'S') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'E'; else if (cnt == 2) rcp[rn] = 'N'; else if (cnt == 3) rcp[rn] = 'W'; else if (cnt == 0) rcp[rn] = 'S'; } else if (rcp[rn] == 'N') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'W'; else if (cnt == 2) rcp[rn] = 'S'; else if (cnt == 3) rcp[rn] = 'E'; else if (cnt == 0) rcp[rn] = 'N'; } } else if (v == 'R') { if (rcp[rn] == 'E') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'S'; else if (cnt == 2) rcp[rn] = 'W'; else if (cnt == 3) rcp[rn] = 'N'; else if (cnt == 0) rcp[rn] = 'E'; } else if (rcp[rn] == 'W') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'N'; else if (cnt == 2) rcp[rn] = 'E'; else if (cnt == 3) rcp[rn] = 'S'; else if (cnt == 0) rcp[rn] = 'W'; } else if (rcp[rn] == 'S') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'W'; else if (cnt == 2) rcp[rn] = 'N'; else if (cnt == 3) rcp[rn] = 'E'; else if (cnt == 0) rcp[rn] = 'S'; } else if (rcp[rn] == 'N') { int cnt = c % 4; if (cnt == 1) rcp[rn] = 'E'; else if (cnt == 2) rcp[rn] = 'S'; else if (cnt == 3) rcp[rn] = 'W'; else if (cnt == 0) rcp[rn] = 'N'; } } else if (v == 'F') { int rr = robot[rn].first; int rc = robot[rn].second; if (rcp[rn] == 'E') { int x = 0; for (int i = 1; i <= c; i++) { x = rc + i; if (x >= A) { printf("Robot %d crashes into the wall\n", rn); exit(0); } for (int j = 1; j <= N; j++) { if (rr == robot[j].first && x == robot[j].second) { printf("Robot %d crashes into robot %d\n", rn, j); exit(0); } } } robot[rn].second = x; } else if (rcp[rn] == 'W') { int x = 0; for (int i = 1; i <= c; i++) { x = rc - i; if (x < 0) { printf("Robot %d crashes into the wall\n", rn); exit(0); } for (int j = 1; j <= N; j++) { if (rr == robot[j].first && x == robot[j].second) { printf("Robot %d crashes into robot %d\n", rn, j); exit(0); } } } robot[rn].second = x; } else if (rcp[rn] == 'S') { int y = 0; for (int i = 1; i <= c; i++) { y = rr + i; if (y >= B) { printf("Robot %d crashes into the wall\n", rn); exit(0); } for (int j = 1; j <= N; j++) { if (y == robot[j].first && rc == robot[j].second) { printf("Robot %d crashes into robot %d\n", rn, j); exit(0); } } } robot[rn].first = y; } else if (rcp[rn] == 'N') { int y = 0; for (int i = 1; i <= c; i++) { y = rr - i; if (y < 0) { printf("Robot %d crashes into the wall\n", rn); exit(0); } for (int j = 1; j <= N; j++) { if (y == robot[j].first && rc == robot[j].second) { printf("Robot %d crashes into robot %d\n", rn, j); exit(0); } } } robot[rn].first = y; } } } int main(void) { int ry = 0, rx = 0; char rv; scanf("%d %d", &A, &B); scanf("%d %d", &N, &M); for (int i = 1; i <= N; i++) { cin >> rx >> ry >> rv; robot[i].first = B - ry; robot[i].second = rx - 1; rcp[i] = rv; } int robot_number[101] = { 0, }; int cnt[101] = { 0, }; char go[101]; for (int i = 1; i <= M; i++) { cin >> robot_number[i] >> go[i] >> cnt[i]; } for (int i = 1; i <= M; i++) { robot_move(robot_number[i], go[i], cnt[i]); } printf("OK\n"); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
15649번 N과 M (1) (0) | 2018.08.26 |
---|---|
2589번 보물섬 (0) | 2018.08.25 |
14891번 톱니바퀴 (0) | 2018.08.24 |
14889번 스타트와 링크 (0) | 2018.08.24 |
6593번 상범 빌딩 (0) | 2018.08.24 |