[BOJ] 8972 미친 아두이노

Time Lapse :28min 7sec

8972.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
76
77
78
79
80
81
82
83
84
85
#include <iostream>
#include <cmath>
#include <queue>
using namespace std;
struct rb {
int y, x;
};
bool operator<(rb a, rb b) {
return a.y == b.y ? a.x > b.x : a.y > b.y;
}
int dx[10] = {0, -1, 0, 1, -1, 0, 1, -1, 0, 1};
int dy[10] = {0, 1, 1, 1, 0, 0, 0, -1, -1, -1};
char map[100][101];
string str;
int n, m, y, x;
priority_queue<rb> pq;
queue<rb> q;
int main() {
scanf("%d %d",&n, &m);
for(int i = 0; i < n; i++) {
scanf("%s", map[i]);
for(int j = 0; j < m; j++) {
switch (map[i][j]) {
case 'R':
map[i][j] = '.';
q.push(rb{.y = i, .x = j});
break;
case 'I':
y = i;
x = j;
map[i][j] = '.';
}
}
}
cin>>str;
for(int i = 0; i < str.length(); i++) {
y = y + dy[str[i]&0b1111];
x = x + dx[str[i]&0b1111];
while(!q.empty()) {
rb r = q.front();
q.pop();
if(r.y == y && r.x == x) {
printf("kraj %d",i+1);
exit(0);
}
int minVal = 987654321;
int nPos;
for(int i = 1; i <= 9; i++) {
int dist = abs(r.y + dy[i] - y) + abs(r.x + dx[i] - x);
if(dist < minVal) {
minVal = dist;
nPos = i;
}
}
pq.push(rb{.y = r.y + dy[nPos], .x = r.x + dx[nPos]});
}
rb prev{-1, -1};
bool flag = false;
while(!pq.empty()) {
rb r = pq.top();
if(r.y == y && r.x == x) {
printf("kraj %d",i+1);
exit(0);
}
pq.pop();
if(!(r.y == prev.y && r.x == prev.x)) {
if(flag)
q.push(prev);
prev = r;
flag = true;
} else
flag = false;
if(pq.empty() && flag)
q.push(r);
}
}
map[y][x] = 'I';
while(!q.empty()) {
rb r = q.front();
q.pop();
map[r.y][r.x] = 'R';
}
for(int i = 0; i < n; i++)
printf("%s\n",map[i]);
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/09/07/PS/BOJ/8972/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.