結果

問題 No.2695 Warp Zone
ユーザー titiatitia
提出日時 2024-03-22 23:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-09-30 12:23:37
合計ジャッジ時間 4,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,484 KB
testcase_01 AC 40 ms
53,552 KB
testcase_02 AC 40 ms
54,248 KB
testcase_03 AC 196 ms
78,592 KB
testcase_04 AC 185 ms
78,188 KB
testcase_05 AC 195 ms
78,228 KB
testcase_06 AC 190 ms
77,648 KB
testcase_07 AC 197 ms
78,204 KB
testcase_08 AC 55 ms
64,980 KB
testcase_09 AC 165 ms
77,876 KB
testcase_10 AC 42 ms
53,256 KB
testcase_11 AC 123 ms
76,976 KB
testcase_12 AC 160 ms
77,504 KB
testcase_13 AC 36 ms
53,448 KB
testcase_14 AC 167 ms
78,148 KB
testcase_15 AC 148 ms
77,604 KB
testcase_16 AC 112 ms
77,124 KB
testcase_17 AC 133 ms
77,456 KB
testcase_18 AC 179 ms
77,396 KB
testcase_19 AC 51 ms
64,004 KB
testcase_20 AC 172 ms
77,532 KB
testcase_21 AC 168 ms
77,888 KB
testcase_22 AC 137 ms
77,576 KB
testcase_23 AC 155 ms
77,984 KB
testcase_24 AC 38 ms
53,216 KB
testcase_25 AC 39 ms
52,948 KB
testcase_26 AC 38 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter
from heapq import heappop,heappush

H,W,N=map(int,input().split())
WA=[list(map(int,input().split())) for i in range(N)]

WA=[[1,1,1,1]]+WA+[[H,W,H,W]]

DP=[1<<63]*len(WA)
WA.sort(key=itemgetter(0))
WA.sort(key=itemgetter(1))

DP[0]=0

Q=[(0,0)]

while Q:
    time,ind=heappop(Q)

    if DP[ind]!=time:
        continue

    a,b,c,d=WA[ind]
    for j in range(len(WA)):
        e,f,g,h=WA[j]


        dis=abs(e-a)+abs(f-b)

        if DP[j]>DP[ind]+dis:
            DP[j]=DP[ind]+dis
            heappush(Q,(DP[j],j))


        dis=abs(e-c)+abs(f-d)

        if DP[j]>DP[ind]+dis+1:
            DP[j]=DP[ind]+dis+1
            heappush(Q,(DP[j],j))


print(DP[-1])
0