結果
問題 | No.2695 Warp Zone |
ユーザー | ゼット |
提出日時 | 2024-03-22 22:00:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,056 KB |
実行使用メモリ | 78,120 KB |
最終ジャッジ日時 | 2024-09-30 11:31:11 |
合計ジャッジ時間 | 3,524 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,352 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 109 ms
76,416 KB |
testcase_10 | AC | 39 ms
52,096 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 38 ms
52,736 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 | WA | - |
testcase_24 | AC | 38 ms
52,352 KB |
testcase_25 | AC | 38 ms
52,608 KB |
testcase_26 | AC | 38 ms
52,992 KB |
ソースコード
H,W,N=map(int,input().split()) result=H-1+W-1 from heapq import heappush,heappop L=[] for i in range(N): x,y,c,d=map(int,input().split()) L.append((x,y,c,d)) kaku=[False]*N dist=[10**15]*N S=[] for i in range(N): x,y=L[i][0],L[i][1] dist[i]=abs(x-1)+abs(y-1) heappush(S,dist[i]*10**10+i) while S: w=heappop(S) time=w//(10**10) pos=w%(10**10) if kaku[pos]==True: continue kaku[pos]=True c,d=L[pos][2],L[pos][3] for j in range(N): if kaku[j]==True: continue x,y=L[j][0],L[j][1] di=abs(x-c)+abs(y-d) if dist[j]>dist[pos]+di+1: dist[j]=dist[pos]+di heappush(S,dist[j]*10**10+j) for i in range(N): c,d=L[i][2],L[i][3] di=abs(c-H)+abs(d-W) result=min(result,dist[i]+di+1) print(result)