結果

問題 No.2695 Warp Zone
ユーザー とりゐとりゐ
提出日時 2024-03-22 21:40:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,208 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 427,752 KB
最終ジャッジ日時 2024-09-30 11:09:05
合計ジャッジ時間 12,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 1,203 ms
427,264 KB
testcase_04 AC 1,208 ms
414,592 KB
testcase_05 AC 1,138 ms
414,700 KB
testcase_06 AC 1,171 ms
423,552 KB
testcase_07 AC 1,173 ms
427,752 KB
testcase_08 AC 63 ms
69,504 KB
testcase_09 AC 373 ms
189,568 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 157 ms
105,856 KB
testcase_12 AC 511 ms
240,804 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 675 ms
288,896 KB
testcase_15 AC 323 ms
174,592 KB
testcase_16 AC 153 ms
101,760 KB
testcase_17 AC 227 ms
134,232 KB
testcase_18 AC 871 ms
342,348 KB
testcase_19 AC 60 ms
67,456 KB
testcase_20 AC 744 ms
312,576 KB
testcase_21 AC 688 ms
285,312 KB
testcase_22 AC 297 ms
164,320 KB
testcase_23 AC 480 ms
238,464 KB
testcase_24 AC 40 ms
52,608 KB
testcase_25 AC 39 ms
52,608 KB
testcase_26 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N=map(int,input().split())
dic={}
dic[(1,1)]=0
dic[(H,W)]=1
num=2
pos=[(1,1),(H,W)]
abcd=[]
for i in range(N):
  a,b,c,d=map(int,input().split())
  if (a,b) not in dic:
    dic[(a,b)]=num
    pos.append((a,b))
    num+=1
  if (c,d) not in dic:
    dic[(c,d)]=num
    pos.append((c,d))
    num+=1
  abcd.append([a,b,c,d])

M=num
edge=[[] for i in range(M)]
for a,b,c,d in abcd:
  edge[dic[(a,b)]].append((dic[c,d],1))

for i in range(M):
  for j in range(M):
    xi,yi=pos[i]
    xj,yj=pos[j]
    edge[i].append([j,abs(xi-xj)+abs(yi-yj)])

from heapq import heappush, heappop
INF=10**18
def dijkstra(start,n):
  dist=[INF]*n
  hq=[(0,start)]
  dist[start]=0
  seen=[False]*n
  while hq:
    w,v=heappop(hq)
    if dist[v]<w:
      continue
    seen[v]=True
    for to,cost in edge[v]:
      if seen[to]==False and dist[v]+cost<dist[to]:
        dist[to]=dist[v]+cost
        heappush(hq,(dist[to],to))
  return dist

print(dijkstra(0,M)[1])
0