結果

問題 No.2695 Warp Zone
ユーザー june19312june19312
提出日時 2024-03-22 23:38:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,400 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 427,360 KB
最終ジャッジ日時 2024-09-30 12:45:16
合計ジャッジ時間 14,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 47 ms
57,856 KB
testcase_03 AC 1,394 ms
427,360 KB
testcase_04 AC 1,333 ms
413,532 KB
testcase_05 AC 1,332 ms
413,696 KB
testcase_06 AC 1,400 ms
424,192 KB
testcase_07 AC 1,349 ms
427,144 KB
testcase_08 AC 65 ms
72,320 KB
testcase_09 AC 457 ms
189,568 KB
testcase_10 AC 43 ms
58,752 KB
testcase_11 AC 184 ms
106,752 KB
testcase_12 AC 590 ms
240,768 KB
testcase_13 AC 37 ms
52,864 KB
testcase_14 AC 778 ms
288,640 KB
testcase_15 AC 383 ms
175,104 KB
testcase_16 AC 159 ms
101,760 KB
testcase_17 AC 258 ms
133,504 KB
testcase_18 AC 1,094 ms
342,400 KB
testcase_19 AC 59 ms
71,296 KB
testcase_20 AC 906 ms
313,036 KB
testcase_21 AC 803 ms
285,184 KB
testcase_22 AC 352 ms
163,824 KB
testcase_23 AC 573 ms
238,592 KB
testcase_24 AC 37 ms
53,120 KB
testcase_25 AC 36 ms
52,608 KB
testcase_26 AC 35 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop
H,W,N = map(int,input().split())

ten = {}
cnt = 1
warp = {}

ten[(1,1)] = 1
cnt += 1
for i in range(N):
    a,b,c,d = map(int,input().split()) #a=頂点,b=頂点,c=コスト
    if (a,b) not in ten:
        ten[(a,b)] = cnt
        cnt+=1
    if (c,d) not in ten:
        ten[(c,d)] = cnt
        cnt+=1
    
    warp[(a,b,c,d)] = True

ten[(H,W)] = cnt

G = [[] for _ in range(cnt+1)]

for ind1,val1 in ten.items():
    for ind2,val2 in ten.items():
        if val1 == val2:
            continue
        aa,bb,cc,dd = ind1[0],ind1[1],ind2[0],ind2[1]
        if (aa,bb,cc,dd) in warp:
            G[val1].append([val2,1])
        else:
            cost = abs(aa-cc) + abs(bb-dd)
            G[val1].append([val2,cost])

dist = [-1]*(cnt+1)
visited = [False]*(cnt+1)

Q = []
heappush(Q,(0,1)) #◆=出発地点コスト(通常は0),◇=出発地点の頂点
dist[1] = 0

while len(Q)>0:
    a,b = heappop(Q) #a=コスト(◆),b=頂点(◇)

    if visited[b]:
        continue

    visited[b] = True

    for c,d in G[b]: #c=頂点,d=コスト
        if dist[c] == -1 or dist[c] > dist[b]+d:
            dist[c] = dist[b]+d
            heappush(Q,(dist[c],c))

print(dist[-1])
0