結果
問題 | No.1323 うしらずSwap |
ユーザー | t33f |
提出日時 | 2020-12-20 10:43:39 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,319 bytes |
コンパイル時間 | 1,220 ms |
コンパイル使用メモリ | 135,704 KB |
実行使用メモリ | 47,732 KB |
最終ジャッジ日時 | 2024-09-21 11:36:22 |
合計ジャッジ時間 | 9,616 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 69 ms
33,720 KB |
testcase_19 | AC | 108 ms
33,556 KB |
testcase_20 | WA | - |
testcase_21 | AC | 88 ms
47,380 KB |
testcase_22 | AC | 126 ms
47,568 KB |
testcase_23 | AC | 92 ms
47,440 KB |
testcase_24 | AC | 127 ms
47,572 KB |
testcase_25 | AC | 91 ms
47,376 KB |
testcase_26 | AC | 82 ms
47,584 KB |
testcase_27 | AC | 80 ms
47,520 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 300 ms
33,560 KB |
testcase_35 | AC | 303 ms
33,560 KB |
testcase_36 | WA | - |
testcase_37 | AC | 287 ms
33,584 KB |
testcase_38 | WA | - |
testcase_39 | AC | 309 ms
33,628 KB |
testcase_40 | WA | - |
testcase_41 | AC | 316 ms
33,712 KB |
testcase_42 | AC | 287 ms
33,672 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 2 ms
6,940 KB |
testcase_60 | AC | 2 ms
6,940 KB |
testcase_61 | WA | - |
ソースコード
#include <cstring> #include <tuple> #include <algorithm> #include <queue> #include <vector> #include <iostream> using namespace std; template<typename Callback> inline void for_nbd4(int x, int y, int lx, int ux, int ly, int uy, Callback f) { constexpr pair<int, int> dxdy[] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; for (auto [dx, dy] : dxdy) { const int u = x + dx, v = y + dy; if (lx <= u && u < ux && ly <= v && v < uy) f(u, v); } } template<typename Callback> inline void for_nbd4(int x, int y, int X, int Y, Callback f) { for_nbd4(x, y, 0, X, 0, Y, f); } template<typename T, typename Callback> inline T sum_nbd4(int x, int y, int lx, int ux, int ly, int uy, Callback f) { constexpr pair<int, int> dxdy[] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; T result{}; for (auto [dx, dy] : dxdy) { const int u = x + dx, v = y + dy; if (lx <= u && u < ux && ly <= v && v < uy) result += f(u, v); } return result; } template<typename T, typename Callback> inline T sum_nbd4(int x, int y, int X, int Y, Callback f) { return sum_nbd4<T, Callback>(x, y, 0, X, 0, Y, f); } int main() { int h, w, sx, sy, gx, gy; cin >> h >> w >> sx >> sy >> gx >> gy; sx--; sy--; gx--; gy--; vector<string> S(h); for (int i = 0; i < h; i++) cin >> S[i]; int dist[h][w], count[h][w]; pair<int, int> from[h][w]; constexpr int INF = 1<<30; priority_queue<tuple<int, int, int> > pq; for (int i = 0; i < h; i++) for (int j = 0; j < w; j++) if (i == sx && j == sy) { dist[i][j] = 0; count[i][j] = 1; from[i][j] = {-1, -1}; pq.push({0, i, j}); } else { dist[i][j] = INF; count[i][j] = 0; } while (!pq.empty()) { auto [d, x, y] = pq.top(); pq.pop(); d = -d; if (dist[x][y] < d) continue; for_nbd4(x, y, h, w, [d=d, x=x, y=y, &S, &dist, &pq, &count, &from](int u, int v) { if (S[u][v] == '#') return; if (dist[u][v] > dist[x][y] + 1) { dist[u][v] = dist[x][y] + 1; count[u][v] = count[x][y]; from[u][v] = {x, y}; pq.push({-dist[u][v], u, v}); } else if (dist[u][v] == dist[x][y] + 1) { count[u][v] += count[x][y]; } }); } // for (int i = 0; i < h; i++) // for (int j = 0; j < w; j++) // cerr << i << ' ' << j << ' ' << dist[i][j] << ' ' << count[i][j] << endl; if (count[gx][gy] == 0) cout << -1 << endl; else if (count[gx][gy] > 1) cout << 2 * dist[gx][gy] << endl; else { int x = gx, y = gy; for (;;) { tie(x, y) = from[x][y]; if (x == sx && y == sy) break; if (sum_nbd4<int>(x, y, h, w, [&](int u, int v) {return int(S[u][v] == '.');}) > 2) { cout << 2 * dist[gx][gy] + 2 << endl; return 0; } S[x][y] = '#'; } const int d0 = dist[gx][gy]; int dist[2][h][w]; for (int k = 0; k < 2; k++) for (int i = 0; i < h; i++) for (int j = 0; j < w; j++) dist[k][i][j] = (k == 0 && i == sx && j == sy) ? 0 : INF; priority_queue<tuple<int, int, int, int> > pq; pq.push({0, 0, sx, sy}); while (!pq.empty()) { auto [d, f, x, y] = pq.top(); pq.pop(); d = -d; if (dist[f][x][y] < d) continue; for_nbd4(x, y, h, w, [d=d, f=f, x=x, y=y, sx, sy, gx, gy, &S, &dist, &pq](int u, int v) { if (S[u][v] == '#') return; if (f == 1 && u == sx && v == sy) return; if (f == 0 && u == gx && v == gy) return; const int k = f == 1 ? 1 : (u == sx && v == sy) ? 0 : 1; if (dist[k][u][v] > dist[f][x][y] + 1) { dist[k][u][v] = dist[f][x][y] + 1; pq.push({-dist[k][u][v], k, u, v}); } }); } if (dist[1][gx][gy] == INF) cout << "-1" << endl; else cout << d0 + dist[1][gx][gy] << endl; } }