結果

問題 No.2695 Warp Zone
ユーザー nikoro256nikoro256
提出日時 2024-03-22 22:47:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,883 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 472,080 KB
最終ジャッジ日時 2024-09-30 12:13:05
合計ジャッジ時間 18,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,816 KB
testcase_01 AC 42 ms
54,984 KB
testcase_02 AC 41 ms
54,956 KB
testcase_03 AC 1,859 ms
469,472 KB
testcase_04 AC 1,805 ms
455,692 KB
testcase_05 AC 1,823 ms
454,728 KB
testcase_06 AC 1,864 ms
459,212 KB
testcase_07 AC 1,883 ms
472,080 KB
testcase_08 AC 69 ms
71,480 KB
testcase_09 AC 435 ms
204,296 KB
testcase_10 AC 46 ms
55,524 KB
testcase_11 AC 183 ms
107,288 KB
testcase_12 AC 710 ms
275,648 KB
testcase_13 AC 46 ms
54,408 KB
testcase_14 AC 933 ms
325,280 KB
testcase_15 AC 375 ms
187,644 KB
testcase_16 AC 171 ms
102,536 KB
testcase_17 AC 257 ms
137,704 KB
testcase_18 AC 1,329 ms
382,912 KB
testcase_19 AC 71 ms
70,928 KB
testcase_20 AC 1,051 ms
340,260 KB
testcase_21 AC 971 ms
320,500 KB
testcase_22 AC 377 ms
173,652 KB
testcase_23 AC 750 ms
274,356 KB
testcase_24 AC 43 ms
54,584 KB
testcase_25 AC 47 ms
54,828 KB
testcase_26 AC 47 ms
54,800 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

import sys
input=sys.stdin.readline
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)
from collections import defaultdict
dic=defaultdict(lambda:-1)
for i in range(len(poses)):
    dic[poses[i]]=i
for a,b,c,d in dat:
    edge[dic[(a,b)]].append([dic[(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