結果

問題 No.2695 Warp Zone
ユーザー tipstar0125tipstar0125
提出日時 2024-03-25 12:59:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,053 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 78,312 KB
最終ジャッジ日時 2024-09-30 14:04:00
合計ジャッジ時間 12,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,016 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 39 ms
54,400 KB
testcase_03 AC 1,045 ms
78,228 KB
testcase_04 AC 1,031 ms
78,312 KB
testcase_05 AC 1,035 ms
78,152 KB
testcase_06 AC 1,053 ms
78,212 KB
testcase_07 AC 1,007 ms
77,864 KB
testcase_08 AC 69 ms
73,344 KB
testcase_09 AC 396 ms
78,084 KB
testcase_10 AC 40 ms
54,656 KB
testcase_11 AC 165 ms
77,536 KB
testcase_12 AC 503 ms
77,964 KB
testcase_13 AC 38 ms
54,016 KB
testcase_14 AC 616 ms
77,696 KB
testcase_15 AC 395 ms
77,964 KB
testcase_16 AC 148 ms
77,272 KB
testcase_17 AC 255 ms
77,912 KB
testcase_18 AC 768 ms
77,952 KB
testcase_19 AC 63 ms
69,376 KB
testcase_20 AC 686 ms
78,112 KB
testcase_21 AC 620 ms
77,932 KB
testcase_22 AC 312 ms
77,612 KB
testcase_23 AC 470 ms
78,076 KB
testcase_24 AC 39 ms
53,888 KB
testcase_25 AC 37 ms
54,400 KB
testcase_26 AC 37 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import defaultdict
H,W,N=map(int,input().split())
ABCD=[tuple(map(int,input().split())) for _ in range(N)]

dist=defaultdict(int)
pos=(1,1)
dist[pos]=0
Q=[]
heapq.heapify(Q)
heapq.heappush(Q,(dist[pos],pos))
while len(Q):
    e,(i,j)=heapq.heappop(Q)
    for (a,b,c,d) in ABCD:
        if (i,j)==(a,b):
            if dist.get((c,d)) is None or e+1<dist[(c,d)]:
                dist[(c,d)]=e+1
                heapq.heappush(Q,(dist[(c,d)],(c,d)))
        else:
            dd=abs(i-a)+abs(j-b)
            if dist.get((a,b)) is None or e+dd<dist[(a,b)]:
                dist[(a,b)]=e+dd
                heapq.heappush(Q,(dist[(a,b)],(a,b)))
    dd=abs(i-H)+abs(j-W)
    if dist.get((H,W)) is None or e+dd<dist[(H,W)]:
        dist[(H,W)]=e+dd
        heapq.heappush(Q,(dist[(H,W)],(H,W)))
print(dist[(H,W)])

0