結果
問題 | No.340 雪の足跡 |
ユーザー | tktk_snsn |
提出日時 | 2021-01-15 12:27:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,301 bytes |
コンパイル時間 | 363 ms |
コンパイル使用メモリ | 81,964 KB |
実行使用メモリ | 108,488 KB |
最終ジャッジ日時 | 2024-11-25 10:13:43 |
合計ジャッジ時間 | 9,529 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,220 KB |
testcase_01 | AC | 40 ms
54,140 KB |
testcase_02 | AC | 40 ms
55,124 KB |
testcase_03 | AC | 41 ms
54,252 KB |
testcase_04 | AC | 43 ms
54,824 KB |
testcase_05 | AC | 41 ms
54,820 KB |
testcase_06 | WA | - |
testcase_07 | AC | 41 ms
54,008 KB |
testcase_08 | AC | 43 ms
54,200 KB |
testcase_09 | AC | 42 ms
54,500 KB |
testcase_10 | AC | 41 ms
55,912 KB |
testcase_11 | AC | 57 ms
67,932 KB |
testcase_12 | AC | 63 ms
73,212 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 119 ms
79,168 KB |
testcase_18 | AC | 117 ms
79,560 KB |
testcase_19 | AC | 118 ms
79,416 KB |
testcase_20 | AC | 290 ms
103,192 KB |
testcase_21 | AC | 148 ms
76,960 KB |
testcase_22 | AC | 92 ms
99,388 KB |
testcase_23 | AC | 286 ms
101,820 KB |
testcase_24 | AC | 250 ms
102,120 KB |
testcase_25 | AC | 272 ms
101,876 KB |
testcase_26 | AC | 104 ms
77,232 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 342 ms
97,236 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 412 ms
108,032 KB |
testcase_33 | AC | 374 ms
107,348 KB |
testcase_34 | AC | 414 ms
108,488 KB |
testcase_35 | AC | 309 ms
101,536 KB |
testcase_36 | AC | 309 ms
101,680 KB |
ソースコード
from collections import deque import sys input = sys.stdin.readline h, w, n = map(int, input().split()) hori = [[0] * w for _ in range(h)] vert = [[0] * w for _ in range(h)] for _ in range(n): m = int(input()) bs, *B = tuple(map(int, input().split())) sx, sy = divmod(bs, w) for bt in B: tx, ty = divmod(bt, w) if sx == tx: hori[sx][min(sy, ty)] += 1 hori[sx][max(sy, ty)] -= 1 elif sy == ty: vert[min(sx, tx)][sy] += 1 vert[max(sx, tx)][sy] -= 1 sx, sy = tx, ty for i in range(h): for j in range(w - 1): hori[i][j + 1] += hori[i][j] for j in range(w): for i in range(h - 1): vert[i + 1][j] += vert[i][j] dist = [-1] * (h * w) dist[0] = 0 que = deque([0]) def push(x, y, d): ID = x * w + y if dist[ID] == -1: dist[ID] = d que.append(ID) while que: s = que.popleft() d = dist[s] x, y = divmod(s, w) if x and vert[x - 1][y]: push(x - 1, y, d + 1) if y and hori[x][y - 1]: push(x, y - 1, d + 1) if x + 1 < h and vert[x][y]: push(x + 1, y, d + 1) if y + 1 < w and hori[x][y]: push(x, y + 1, d + 1) if dist[h * w - 1] == -1: print("Odekakedekinai..") else: print(dist[h * w - 1])