結果
問題 | No.340 雪の足跡 |
ユーザー | tktk_snsn |
提出日時 | 2021-01-14 18:16:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,936 bytes |
コンパイル時間 | 735 ms |
コンパイル使用メモリ | 77,828 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-05-03 10:58:12 |
合計ジャッジ時間 | 9,045 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 22 ms
6,784 KB |
testcase_15 | AC | 26 ms
6,656 KB |
testcase_16 | AC | 20 ms
5,376 KB |
testcase_17 | AC | 34 ms
6,912 KB |
testcase_18 | AC | 28 ms
6,912 KB |
testcase_19 | AC | 35 ms
6,912 KB |
testcase_20 | AC | 330 ms
23,040 KB |
testcase_21 | AC | 197 ms
11,520 KB |
testcase_22 | AC | 25 ms
23,040 KB |
testcase_23 | WA | - |
testcase_24 | AC | 309 ms
22,912 KB |
testcase_25 | AC | 359 ms
22,912 KB |
testcase_26 | AC | 52 ms
5,376 KB |
testcase_27 | AC | 11 ms
5,376 KB |
testcase_28 | AC | 46 ms
5,504 KB |
testcase_29 | AC | 393 ms
15,232 KB |
testcase_30 | AC | 264 ms
15,360 KB |
testcase_31 | AC | 415 ms
22,144 KB |
testcase_32 | AC | 503 ms
23,040 KB |
testcase_33 | AC | 390 ms
23,040 KB |
testcase_34 | AC | 503 ms
23,040 KB |
testcase_35 | AC | 366 ms
23,168 KB |
testcase_36 | AC | 365 ms
23,040 KB |
ソースコード
#include <stdio.h> #include <iostream> #include <algorithm> #include <queue> #include <utility> #include <vector> #include <string> using namespace std; int dx[4] = { 0,1,0,-1 }; int dy[4] = { 1,0,-1,0 }; int hori[2000][2000], vert[2000][2000]; int dist[1010101]; int main() { int h, w, n; cin >> h >> w >> n; for (int i = 0; i < n; i++) { int m; cin >> m; int b; cin >> b; int x, y, xx, yy; x = b / w; y = b % w; while (m--) { cin >> b; xx = b / w; yy = b % w; if (x == xx) { hori[x][min(y, yy)]++; hori[x][max(y, yy) + 1]--; } else { vert[min(x, xx)][y]++; vert[max(x, xx) + 1][y]--; } x = xx; y = yy; } } for (int i = 0; i < h; i++) for (int j = 0; j < w; j++)hori[i][j + 1] += hori[i][j]; for (int i = 0; i < w; i++) for (int j = 0; j < h; j++)vert[j + 1][i] += vert[j][i]; for (int i = 0; i < w * h; i++)dist[i] = -1; dist[0] = 0; queue<int> que; que.push(0); auto toID = [&](int a, int b) { return a * w + b; }; auto push = [&](int a, int b, int d) { int id = toID(a, b); if (dist[id] == -1) { dist[id] = d; que.push(id); } }; while (!que.empty()) { int s = que.front(); que.pop(); int x, y; x = s / w; y = s % w; if (x && vert[x][y] && vert[x - 1][y])push(x - 1, y, dist[s] + 1); if (y && hori[x][y] && hori[x][y - 1])push(x, y - 1, dist[s] + 1); if (x + 1 < h && vert[x][y] && vert[x + 1][y])push(x + 1, y, dist[s] + 1); if (y + 1 < w && hori[x][y] && hori[x][y + 1])push(x, y + 1, dist[s] + 1); } if (dist[h * w - 1] == -1) cout << "Odekakedekinai.." << endl; else cout << dist[h * w - 1] << endl; return 0; }