結果

問題 No.2695 Warp Zone
ユーザー hato336hato336
提出日時 2024-03-22 21:47:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,175 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 91,376 KB
最終ジャッジ日時 2024-09-30 11:16:29
合計ジャッジ時間 6,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
85,376 KB
testcase_01 AC 117 ms
85,504 KB
testcase_02 AC 117 ms
85,504 KB
testcase_03 AC 316 ms
91,264 KB
testcase_04 AC 296 ms
91,264 KB
testcase_05 AC 289 ms
91,008 KB
testcase_06 AC 297 ms
91,264 KB
testcase_07 AC 302 ms
91,008 KB
testcase_08 AC 140 ms
89,600 KB
testcase_09 AC 247 ms
91,008 KB
testcase_10 AC 119 ms
85,844 KB
testcase_11 AC 199 ms
90,368 KB
testcase_12 AC 263 ms
91,008 KB
testcase_13 AC 118 ms
85,504 KB
testcase_14 AC 252 ms
91,264 KB
testcase_15 AC 226 ms
91,008 KB
testcase_16 AC 189 ms
90,496 KB
testcase_17 AC 203 ms
90,752 KB
testcase_18 AC 276 ms
91,008 KB
testcase_19 AC 141 ms
89,728 KB
testcase_20 AC 267 ms
91,376 KB
testcase_21 AC 262 ms
91,008 KB
testcase_22 AC 223 ms
90,828 KB
testcase_23 AC 243 ms
91,264 KB
testcase_24 AC 116 ms
85,504 KB
testcase_25 AC 117 ms
85,504 KB
testcase_26 AC 116 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
h,w,n = map(int,input().split())
v = 2*n+2
e = [[] for i in range(2*n+2)]
warp = []
warp.append((1,1))
for i in range(n):
    a,b,c,d = map(int,input().split())
    dist = abs(a-c) + abs(b-d)
    #e[2*i+2].append(2*i+1)
    e[2*i+1].append(2*i+2)
    warp.append((a,b))
    warp.append((c,d))
warp.append((h,w))

start = 0
d = []
dist = [10**18 for i in range(v)]
heapq.heappush(d,(0,start))
dist[start] = 0
while d:
    _,now = heapq.heappop(d)
    if _ > dist[now]:
        continue
    x,y = warp[now]
    for to in e[now]:
        if dist[to] > dist[now] + 1:
            dist[to] = dist[now] + 1
            heapq.heappush(d,(dist[to],to))
    for i in range(v):
        if i == now:
            continue
        tx,ty = warp[i]
        cost = abs(x-tx) + abs(y-ty)
        if dist[i] > dist[now] + cost:
            dist[i] = dist[now] + cost
            heapq.heappush(d,(dist[i],i))

print(dist[-1])
0