# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
737054 | nguyentunglam | Maze (JOI23_ho_t3) | C++17 | 2076 ms | 864 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define fi first
#define se second
#define endl "\n"
#define ii pair<int, int>
using namespace std;
vector<vector<int> > a, f;
int mx[4] = {0, 0, -1, 1};
int my[4] = {1, -1, 0, 0};
int main() {
#define task ""
cin.tie(0) -> sync_with_stdio(0);
if (fopen ("task.inp", "r")) {
freopen ("task.inp", "r", stdin);
freopen ("task.out", "w", stdout);
}
if (fopen (task".inp", "r")) {
freopen (task".inp", "r", stdin);
freopen (task".out", "w", stdout);
}
int r, c, n; cin >> r >> c >> n;
a = vector<vector<int> > (r + 2, vector<int> (c + 2));
f = vector<vector<int> > (r + 2, vector<int> (c + 2));
int sr, sc, gr, gc; cin >> sr >> sc >> gr >> gc;
for(int i = 1; i <= r; i++) for(int j = 1; j <= c; j++) {
char c; cin >> c;
if (c == '.') a[i][j] = 0;
else a[i][j] = 1;
f[i][j] = 1e9;
}
deque<tuple<int, int, int> > q;
f[sr][sc] = 0;
q.push_back({0, sr, sc});
while (!q.empty()) {
int cost, x, y; tie(cost, x, y) = q.front(); q.pop_front();
if (cost != f[x][y]) continue;
for(int k = 0; k < 4; k++) {
int xx = x + mx[k], yy = y + my[k];
if (xx < 1 || xx > r || yy < 1 || yy > c || a[xx][yy]) continue;
if (f[xx][yy] > f[x][y]) {
f[xx][yy] = f[x][y];
q.push_front({f[xx][yy], xx, yy});
}
}
for(int i = 1; i <= r; i++) for(int j = 1; j <= c; j++) {
int d1 = abs(i - x), d2 = abs(j - y);
if (d1 > d2) swap(d1, d2);
if (d1 < n && d2 <= n && f[i][j] > f[x][y] + 1) {
f[i][j] = f[x][y] + 1;
q.push_back({f[i][j], i, j});
}
}
}
cout << f[gr][gc];
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |