結果

問題 No.2695 Warp Zone
ユーザー hitonanodehitonanode
提出日時 2024-04-05 00:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-01 00:42:29
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,744 KB
testcase_01 AC 37 ms
53,292 KB
testcase_02 AC 37 ms
52,788 KB
testcase_03 AC 208 ms
76,596 KB
testcase_04 AC 209 ms
76,592 KB
testcase_05 AC 202 ms
76,928 KB
testcase_06 AC 214 ms
76,756 KB
testcase_07 AC 225 ms
76,564 KB
testcase_08 AC 61 ms
67,016 KB
testcase_09 AC 129 ms
76,440 KB
testcase_10 AC 37 ms
52,512 KB
testcase_11 AC 85 ms
74,892 KB
testcase_12 AC 148 ms
76,348 KB
testcase_13 AC 36 ms
52,796 KB
testcase_14 AC 159 ms
76,184 KB
testcase_15 AC 125 ms
76,476 KB
testcase_16 AC 81 ms
73,656 KB
testcase_17 AC 96 ms
76,416 KB
testcase_18 AC 186 ms
76,432 KB
testcase_19 AC 57 ms
66,636 KB
testcase_20 AC 172 ms
76,716 KB
testcase_21 AC 165 ms
76,316 KB
testcase_22 AC 109 ms
76,344 KB
testcase_23 AC 146 ms
76,580 KB
testcase_24 AC 36 ms
52,996 KB
testcase_25 AC 37 ms
52,636 KB
testcase_26 AC 36 ms
53,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

abcds = [tuple(map(int, input().split())) for _ in range(N)]

vs = [(1, 1)] + [(a, b) for a, b, c, d in abcds] + [(c, d) for a, b, c, d in abcds] + [(H, W)]

dist = [(1 << 60)] * len(vs)

dist[0] = 0
done = [False] * len(vs)

while True:
    # Dijkstra
    v = -1
    for i in range(len(vs)):
        if not done[i] and (v == -1 or dist[i] < dist[v]):
            v = i

    if v == -1:
        break

    done[v] = True

    x0, y0 = vs[v]
    d0 = dist[v]

    for i, (x1, y1) in enumerate(vs):
        if done[i]:
            continue

        d = abs(x1 - x0) + abs(y1 - y0)

        if d0 + d < dist[i]:
            dist[i] = d0 + d

    for i in range(N):
        dist[N + i + 1] = min(dist[N + i + 1], dist[i + 1] + 1)

print(dist[-1])
0