結果

問題 No.2695 Warp Zone
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-23 14:20:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 153,216 KB
最終ジャッジ日時 2024-09-30 13:28:38
合計ジャッジ時間 13,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 WA -
testcase_04 AC 1,144 ms
146,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,256 ms
152,704 KB
testcase_08 AC 61 ms
69,504 KB
testcase_09 AC 408 ms
99,200 KB
testcase_10 WA -
testcase_11 AC 165 ms
82,944 KB
testcase_12 AC 608 ms
113,408 KB
testcase_13 AC 37 ms
54,144 KB
testcase_14 WA -
testcase_15 AC 379 ms
96,896 KB
testcase_16 AC 134 ms
81,792 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 817 ms
127,872 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 38 ms
54,016 KB
testcase_25 AC 37 ms
53,760 KB
testcase_26 AC 37 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N=map(int,input().split())
from collections import defaultdict,deque
G=defaultdict(defaultdict)
C=defaultdict(int)
I=[]
O=[]
G[(1,1)][(H,W)]=H-1+W-1
for _ in range(N):
    a,b,c,d=map(int,input().split())
    G[(1,1)][(a,b)]=a-1+b-1
    G[(1,1)][(c,d)]=c-1+d-1
    G[(a,b)][(c,d)]=1
    G[(a,b)][(H,W)]=H-a+H-b
    G[(c,d)][(H,W)]=H-c+W-d
    C[(a,b)]=1<<60
    C[(c,d)]=1<<60
    I.append((a,b))
    O.append((c,d))
for c,d in O:
    for a,b in I:
        G[(c,d)][(a,b)]=abs(c-a)+abs(d-b)
C[(H,W)]=1<<60
C[(1,1)]=0
Q=deque()
Q.append((1,1))
while Q:
    a,b=Q.popleft()
    for c,d in G[(a,b)].keys():
        tmp=C[(a,b)]+G[(a,b)][(c,d)]
        if tmp<C[(c,d)]:
            C[(c,d)]=tmp
            Q.append((c,d))
print(C[(H,W)])
0