結果

問題 No.2695 Warp Zone
ユーザー yansi819yansi819
提出日時 2024-06-01 15:05:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 77,584 KB
最終ジャッジ日時 2024-06-01 15:05:19
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 WA -
testcase_02 AC 41 ms
52,864 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 80 ms
73,728 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
52,480 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 40 ms
52,736 KB
testcase_25 AC 42 ms
52,992 KB
testcase_26 AC 41 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
H, W, N = map(int, input().split())
G = [[] for _ in range(2 * N + 2)]
G[0].append((2 * N + 1, H - 1 + W - 1))
for i in range(1, 2 * N + 1, 2):
    a, b, c, d = map(int, input().split())
    a -= 1; b -= 1; c -= 1; d -= 1
    G[0].append((i, a + b))
    G[i].append((i + 1, 1))
    G[i + 1].append((2 * N + 1, H - 1 - c + W - 1 - d))
dist = [10 ** 18] * (2 * N + 2)
dist[0] = 0
pq = [(0, 0)]
heapify(pq)
while len(pq) > 0:
    d, u = heappop(pq)
    for v, c in G[u]:
        if dist[v] > dist[u] + c:
            dist[v] = dist[u] + c
            heappush(pq, (dist[v], v))
print(dist[2 *N + 1])
0