結果

問題 No.2695 Warp Zone
ユーザー yansi819yansi819
提出日時 2024-06-01 15:24:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,788 KB
最終ジャッジ日時 2024-06-01 15:24:45
合計ジャッジ時間 4,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 211 ms
109,620 KB
testcase_04 AC 205 ms
107,208 KB
testcase_05 AC 206 ms
107,636 KB
testcase_06 AC 215 ms
109,056 KB
testcase_07 AC 212 ms
109,788 KB
testcase_08 AC 57 ms
65,408 KB
testcase_09 AC 180 ms
87,364 KB
testcase_10 AC 40 ms
52,992 KB
testcase_11 AC 114 ms
79,808 KB
testcase_12 AC 164 ms
92,160 KB
testcase_13 AC 40 ms
53,248 KB
testcase_14 AC 173 ms
96,640 KB
testcase_15 AC 136 ms
85,636 KB
testcase_16 AC 104 ms
79,052 KB
testcase_17 AC 123 ms
79,992 KB
testcase_18 AC 200 ms
100,864 KB
testcase_19 AC 58 ms
62,848 KB
testcase_20 AC 184 ms
98,424 KB
testcase_21 AC 168 ms
95,744 KB
testcase_22 AC 126 ms
84,452 KB
testcase_23 AC 149 ms
91,444 KB
testcase_24 AC 41 ms
52,992 KB
testcase_25 AC 40 ms
52,608 KB
testcase_26 AC 38 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
H, W, N = map(int, input().split())
G = [[] for _ in range(2 * N + 2)]
G[0].append((2 * N + 1, H - 1 + W - 1))
P = []
for _ in range(N):
    a, b, c, d = map(int, input().split())
    a -= 1; b -= 1; c -= 1; d -= 1
    P.append((a, b, c, d))
for i, (a, b, c, d) in enumerate(P):
    G[0].append((2 * i + 1, a + b))
    G[2 * i + 1].append((2 * i + 2, 1))
    G[2 * i + 2].append((2 * N + 1, H - 1 - c + W - 1 - d))
    for j, (e, f, g, h) in enumerate(P):
        if a == e and b == f: continue
        G[2 * i + 2].append((2 * j + 1, abs(c - e) + abs(d - f)))
dist = [10 ** 18] * (2 * N + 2)
dist[0] = 0
pq = [(0, 0)]
heapify(pq)
while len(pq) > 0:
    d, u = heappop(pq)
    for v, c in G[u]:
        if dist[v] > dist[u] + c:
            dist[v] = dist[u] + c
            heappush(pq, (dist[v], v))
print(dist[2 *N + 1])
0