結果

問題 No.2695 Warp Zone
ユーザー detteiuudetteiuu
提出日時 2024-05-18 01:01:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 191,020 KB
最終ジャッジ日時 2024-05-18 01:01:39
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,936 KB
testcase_01 AC 43 ms
55,660 KB
testcase_02 AC 39 ms
56,236 KB
testcase_03 AC 545 ms
190,964 KB
testcase_04 AC 550 ms
185,896 KB
testcase_05 AC 525 ms
186,024 KB
testcase_06 AC 570 ms
190,112 KB
testcase_07 AC 547 ms
191,020 KB
testcase_08 AC 59 ms
69,488 KB
testcase_09 AC 270 ms
114,084 KB
testcase_10 AC 40 ms
56,020 KB
testcase_11 AC 160 ms
87,960 KB
testcase_12 AC 338 ms
130,716 KB
testcase_13 AC 42 ms
54,764 KB
testcase_14 AC 379 ms
146,196 KB
testcase_15 AC 248 ms
109,684 KB
testcase_16 AC 141 ms
85,624 KB
testcase_17 AC 177 ms
96,216 KB
testcase_18 AC 434 ms
162,280 KB
testcase_19 AC 60 ms
66,508 KB
testcase_20 AC 440 ms
153,176 KB
testcase_21 AC 369 ms
144,176 KB
testcase_22 AC 211 ms
105,404 KB
testcase_23 AC 328 ms
130,164 KB
testcase_24 AC 40 ms
56,304 KB
testcase_25 AC 39 ms
54,728 KB
testcase_26 AC 40 ms
54,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
from collections import defaultdict

H, W, N = map(int, input().split())
warp = [list(map(int, input().split())) for _ in range(N)]
G = defaultdict(list)
G[(1, 1)].append((H, W, (H-1)+(W-1)))
for i in range(N):
    a, b, c, d = warp[i]
    G[(1, 1)].append((a, b, (a-1)+(b-1)))
    G[(a, b)].append((c, d, 1))
    G[(c, d)].append((H, W, (H-c)+(W-d)))
    for j in range(N):
        a2, b2, c2, d2 = warp[j]
        G[(c, d)].append((a2, b2, abs(a2-c)+abs(b2-d)))

def dijkstra(start):
    dist = defaultdict(int)
    dist[start] = 0
    visited = set()
    que = [(0, start)]
    while que:
        d, (h, w) = heappop(que)
        if (h, w) in visited:
            continue
        visited.add((h, w))
        for nh, nw, weight in G[(h, w)]:
            if (nh, nw) not in dist or dist[(h, w)]+weight < dist[(nh, nw)]:
                dist[(nh, nw)] = dist[(h, w)]+weight
                heappush(que, (dist[(nh, nw)], (nh, nw)))
    return dist

print(dijkstra((1, 1))[(H, W)])
0