結果

問題 No.2695 Warp Zone
ユーザー nikoro256nikoro256
提出日時 2024-03-22 22:44:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,672 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 470,700 KB
最終ジャッジ日時 2024-09-30 12:09:14
合計ジャッジ時間 17,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,756 KB
testcase_01 AC 35 ms
53,756 KB
testcase_02 AC 35 ms
53,628 KB
testcase_03 AC 1,616 ms
470,700 KB
testcase_04 AC 1,587 ms
456,296 KB
testcase_05 AC 1,532 ms
448,372 KB
testcase_06 AC 1,672 ms
460,548 KB
testcase_07 AC 1,655 ms
466,496 KB
testcase_08 AC 61 ms
70,492 KB
testcase_09 AC 386 ms
203,924 KB
testcase_10 AC 37 ms
53,700 KB
testcase_11 AC 158 ms
107,240 KB
testcase_12 AC 624 ms
275,312 KB
testcase_13 AC 36 ms
53,352 KB
testcase_14 AC 826 ms
326,004 KB
testcase_15 AC 335 ms
187,748 KB
testcase_16 AC 159 ms
102,544 KB
testcase_17 AC 231 ms
137,660 KB
testcase_18 AC 1,150 ms
380,108 KB
testcase_19 AC 59 ms
69,976 KB
testcase_20 AC 895 ms
340,628 KB
testcase_21 AC 816 ms
326,496 KB
testcase_22 AC 308 ms
173,628 KB
testcase_23 AC 620 ms
274,056 KB
testcase_24 AC 36 ms
53,940 KB
testcase_25 AC 35 ms
53,384 KB
testcase_26 AC 34 ms
53,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[i].append([j,abs(a-c)+abs(b-d)])
        edge[j].append([i,abs(a-c)+abs(b-d)])
N=len(poses)
dist=dijkstra(poses.index((0,0)))
print(dist[poses.index((H-1,W-1))])
0