結果

問題 No.2695 Warp Zone
ユーザー titiatitia
提出日時 2024-03-22 23:04:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 77,796 KB
最終ジャッジ日時 2024-09-30 12:23:29
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,536 KB
testcase_01 WA -
testcase_02 AC 38 ms
54,332 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 49 ms
63,444 KB
testcase_09 AC 123 ms
77,580 KB
testcase_10 AC 38 ms
53,404 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
53,448 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 AC 125 ms
77,328 KB
testcase_24 AC 37 ms
53,564 KB
testcase_25 AC 38 ms
53,048 KB
testcase_26 AC 38 ms
54,184 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]

        if a<=e and b<=f:
            dis=(e-a)+(f-b)

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

        if c<=e and d<=f:
            dis=(e-c)+(f-d)

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


print(DP[-1])
0