結果

問題 No.2695 Warp Zone
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-23 14:13:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 152,392 KB
最終ジャッジ日時 2024-09-30 13:28:22
合計ジャッジ時間 15,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 WA -
testcase_04 AC 1,266 ms
146,432 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,359 ms
151,932 KB
testcase_08 AC 70 ms
69,248 KB
testcase_09 AC 446 ms
98,816 KB
testcase_10 WA -
testcase_11 AC 171 ms
82,688 KB
testcase_12 AC 648 ms
113,536 KB
testcase_13 AC 42 ms
53,760 KB
testcase_14 WA -
testcase_15 AC 428 ms
96,896 KB
testcase_16 AC 159 ms
81,536 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 868 ms
127,360 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
54,016 KB
testcase_25 AC 41 ms
54,016 KB
testcase_26 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N=map(int,input().split())
from collections import defaultdict,deque
G=defaultdict(dict)
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)]=min(C[(c,d)],tmp)
            Q.append((c,d))
print(C[(H,W)])
0