結果

問題 No.2695 Warp Zone
ユーザー dp_ijkdp_ijk
提出日時 2024-06-22 15:32:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 813 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 205,876 KB
最終ジャッジ日時 2024-06-22 15:32:39
合計ジャッジ時間 10,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,268 KB
testcase_01 AC 43 ms
55,624 KB
testcase_02 AC 45 ms
55,956 KB
testcase_03 AC 813 ms
205,876 KB
testcase_04 AC 735 ms
201,208 KB
testcase_05 AC 774 ms
201,180 KB
testcase_06 AC 790 ms
205,172 KB
testcase_07 AC 759 ms
205,464 KB
testcase_08 AC 73 ms
73,172 KB
testcase_09 AC 352 ms
119,772 KB
testcase_10 AC 46 ms
56,736 KB
testcase_11 AC 180 ms
89,760 KB
testcase_12 AC 435 ms
137,980 KB
testcase_13 AC 44 ms
55,252 KB
testcase_14 AC 505 ms
155,428 KB
testcase_15 AC 281 ms
113,136 KB
testcase_16 AC 150 ms
86,568 KB
testcase_17 AC 211 ms
98,320 KB
testcase_18 AC 644 ms
175,048 KB
testcase_19 AC 68 ms
71,652 KB
testcase_20 AC 545 ms
164,860 KB
testcase_21 AC 504 ms
154,072 KB
testcase_22 AC 265 ms
110,152 KB
testcase_23 AC 429 ms
136,840 KB
testcase_24 AC 44 ms
54,532 KB
testcase_25 AC 44 ms
56,308 KB
testcase_26 AC 44 ms
55,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

INF = float("INF")
H, W, N = map(int, input().split())


def encode(i, j):
   return i*W + j


G = defaultdict(list)

Ps = [(0, 0), (H-1, W-1)]
for _ in range(N):
   a, b, c, d = map(lambda x: int(x) - 1, input().split())
   P = encode(a, b)
   Q = encode(c, d)
   G[P].append((Q, 1))
   Ps.append((a, b))
   Ps.append((c, d))

from itertools import product

for (a, b), (c, d) in product(Ps, repeat=2):
   P = encode(a, b)
   Q = encode(c, d)
   if P == Q: continue
   G[P].append((Q, abs(c-a) + abs(d-b)))


def dijkstra(G, s):
   from heapq import heappop, heappush
   good = defaultdict(bool)
   dist = defaultdict(lambda: INF)
   dist[s] = 0
   Q = [(0, s)]
   while Q:
      dv, v = heappop(Q)
      if good[v]:
         continue
      good[v] = True
      for a, cost in G[v]:
         if good[a]:
            continue
         da = dv + cost
         if dist[a] > da:
            dist[a] = da
            heappush(Q, (da, a))
   return dist


dist = dijkstra(G, s=encode(0, 0))
ans = dist[encode(H-1, W-1)]
print(ans)
0