結果
問題 | No.2695 Warp Zone |
ユーザー | nikoro256 |
提出日時 | 2024-03-22 22:43:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,162 bytes |
コンパイル時間 | 322 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 28,708 KB |
最終ジャッジ日時 | 2024-09-30 12:08:21 |
合計ジャッジ時間 | 3,950 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,956 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 33 ms
11,008 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import heapq def dijkstra(s): hq=[] heapq.heappush(hq,[0,s]) dist=[-1 for _ in range(N)] karidist=[10**9+1 for _ in range(N)] while len(hq)!=0: d,p=heapq.heappop(hq) if dist[p]==-1: dist[p]=d for e,c in edge[p]: if karidist[e]>d+c: karidist[e]=d+c heapq.heappush(hq,[d+c,e]) return dist def csv(i,j): return i*W+j H,W,N=map(int,input().split()) dat=[] poses=[(0,0),(H-1,W-1)] poses=set(poses) for i in range(N): a,b,c,d=map(int,input().split()) a-=1 b-=1 c-=1 d-=1 dat.append([a,b,c,d]) poses.add((a,b)) poses.add((c,d)) edge=[[] for _ in range(len(poses))] poses=list(poses) for a,b,c,d in dat: edge[poses.index((a,b))].append([poses.index((c,d)),1]) for i in range(len(poses)): for j in range(i+1,len(poses)): a,b=poses[i] c,d=poses[j] edge[poses.index((a,b))].append([poses.index((c,d)),abs(a-c)+abs(b-d)]) edge[poses.index((c,d))].append([poses.index((a,b)),abs(a-c)+abs(b-d)]) N=len(poses) dist=dijkstra(poses.index((0,0))) print(dist[poses.index((H-1,W-1))])