結果

問題 No.2695 Warp Zone
ユーザー navel_tosnavel_tos
提出日時 2024-03-23 15:42:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 109,316 KB
最終ジャッジ日時 2024-09-30 13:30:12
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,808 KB
testcase_01 AC 34 ms
54,080 KB
testcase_02 AC 35 ms
54,856 KB
testcase_03 AC 288 ms
109,316 KB
testcase_04 AC 282 ms
108,248 KB
testcase_05 AC 277 ms
108,160 KB
testcase_06 AC 286 ms
108,800 KB
testcase_07 AC 286 ms
109,312 KB
testcase_08 AC 56 ms
69,120 KB
testcase_09 AC 152 ms
87,008 KB
testcase_10 AC 35 ms
52,992 KB
testcase_11 AC 93 ms
79,252 KB
testcase_12 AC 179 ms
92,136 KB
testcase_13 AC 35 ms
52,680 KB
testcase_14 AC 212 ms
96,536 KB
testcase_15 AC 142 ms
85,948 KB
testcase_16 AC 87 ms
79,116 KB
testcase_17 AC 113 ms
82,328 KB
testcase_18 AC 239 ms
101,424 KB
testcase_19 AC 56 ms
69,352 KB
testcase_20 AC 217 ms
98,612 KB
testcase_21 AC 207 ms
96,224 KB
testcase_22 AC 129 ms
84,444 KB
testcase_23 AC 182 ms
91,988 KB
testcase_24 AC 32 ms
53,160 KB
testcase_25 AC 34 ms
52,956 KB
testcase_26 AC 33 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder423E Warp Zone

#入力受取  点は座標圧縮する
H, W, N = map(int, input().split())
P = set([(1, 1), (H, W)])
X = [tuple(map(int, input().split())) for _ in range(N)]
for a, b, c, d in X:
    P.add((a, b))
    P.add((c, d))
P = sorted(P)
R = {(x, y): i for i, (x, y) in enumerate(P)}
M = len(P)

#二点間距離をdistに格納  これ以降、座標を陽に持つ必要がなくなる
dist = lambda P1, P2: abs(P1[0] - P2[0]) + abs(P1[1] - P2[1])
D = [[dist(P1, P2) for P2 in P] for P1 in P]
del P

#ワープを反映
G = [[] for _ in range(M)]
for a, b, c, d in X:
    G[ R[(a, b)] ].append( R[(c, d)] )
S, E = R[(1, 1)], R[(H, W)]
del R

#オリジナルダイクストラ法
DP = [10 ** 18] * M
checked = [False] * M
DP[S] = 0

for _ in range(M):
    d, i = min([(DP[i], i) for i in range(M) if checked[i] == False])
    checked[i] = True
    for j in range(M):
        if checked[j]:
            assert DP[j] <= DP[i] + D[i][j]
        DP[j] = min(DP[j], DP[i] + D[i][j])
    for j in G[i]:
        if checked[j]:
            assert DP[j] <= DP[i] + 1
        DP[j] = min(DP[j], DP[i] + 1)

#答えを出力
print(DP[E])
0