# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
943201 | itslq | 포탈들 (BOI14_portals) | C++17 | 1 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int R, C;
const pair<int, int> dirs[4] = {make_pair(0, 1), make_pair(0, -1), make_pair(1, 0), make_pair(-1, 0)};
queue<pair<pair<int, int>, int>> tocheck;
vector<vector<int>> visited;
bool grid[1000][1000];
void add(int x, int y, int n) {
if (x < 0 || y < 0 || x >= R || x >= C) return;
if (grid[x][y] || visited[x][y]) return;
visited[x][y] = 1;
tocheck.emplace(make_pair(x, y), n + 1);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int P = 0, si, sj, ei, ej, ni, nj, ci, cj;
cin >> R >> C;
int left[R][C], right[R][C], up[R][C], down[R][C];
string row;
visited = vector<vector<int>>(R, vector<int>(C, 0));
for (int i = 0; i < R; i++) {
P = 0;
cin >> row;
for (int j = 0; j < C; j++) {
left[i][j] = P;
switch (row[j]) {
case '.':
grid[i][j] = 0;
break;
case '#':
grid[i][j] = 1;
P = j + 1;
break;
case 'S':
si = i;
sj = j;
grid[i][j] = 0;
break;
case 'C':
ei = i;
ej = j;
grid[i][j] = 0;
break;
}
}
P = C - 1;
for (int j = C - 1; j >= 0; j--) {
right[i][j] = P;
if (grid[i][j]) P = j - 1;
}
}
for (int j = 0; j < C; j++) {
P = 0;
for (int i = 0; i < R; i++) {
up[i][j] = P;
if (grid[i][j]) P = i + 1;
}
P = R - 1;
for (int i = R - 1; i >= 0; i--) {
down[i][j] = P;
if (grid[i][j]) P = i - 1;
}
}
pair<pair<int, int>, int> curr;
add(si, sj, -1);
while (true) {
curr = tocheck.front();
tocheck.pop();
ci = curr.first.first;
cj = curr.first.second;
if (ci == ei && cj == ej) {
cout << curr.second;
return 0;
}
for (pair<int, int> d: dirs) add(ci + d.first, cj + d.second, curr.second);
add(ci, left[ci][cj], curr.second);
add(ci, right[ci][cj], curr.second);
add(up[ci][cj], cj, curr.second);
add(down[ci][cj], cj, curr.second);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |