# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
737054 | nguyentunglam | Maze (JOI23_ho_t3) | C++17 | 2076 ms | 864 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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];
}
Compilation message (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... |