結果

問題 No.2354 Poor Sight in Winter
ユーザー yabityabit
提出日時 2023-07-05 17:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,146 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 223,744 KB
最終ジャッジ日時 2024-07-19 11:21:01
合計ジャッジ時間 9,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,992 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 38 ms
52,992 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 39 ms
53,120 KB
testcase_08 AC 37 ms
52,992 KB
testcase_09 AC 48 ms
62,080 KB
testcase_10 AC 54 ms
64,896 KB
testcase_11 AC 472 ms
191,936 KB
testcase_12 AC 488 ms
200,448 KB
testcase_13 AC 812 ms
222,464 KB
testcase_14 AC 1,146 ms
223,744 KB
testcase_15 AC 743 ms
208,044 KB
testcase_16 AC 939 ms
209,024 KB
testcase_17 AC 745 ms
221,620 KB
testcase_18 AC 331 ms
99,100 KB
testcase_19 AC 538 ms
158,924 KB
testcase_20 AC 372 ms
105,500 KB
testcase_21 AC 145 ms
77,796 KB
testcase_22 AC 234 ms
85,660 KB
testcase_23 AC 277 ms
85,260 KB
testcase_24 AC 460 ms
138,684 KB
testcase_25 AC 175 ms
80,612 KB
testcase_26 AC 181 ms
79,448 KB
testcase_27 AC 106 ms
76,628 KB
testcase_28 AC 123 ms
77,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N, K = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
X = [sx, gx]
Y = [sy, gy]
for i in range(N):
    x, y = map(int, input().split())
    X.append(x)
    Y.append(y)

def dijkstra(start, G):
    INF = 10**9
    dist = [INF] * len(G)
    hq = [(0, start)]
    heapq.heapify(hq)
    dist[start] = 0
    while hq:
        v = heapq.heappop(hq)[1]
        for u, cost in G[v]:
            if dist[v] + cost < dist[u]:
                dist[u] = dist[v] + cost
                heapq.heappush(hq, (dist[u], u))
    return dist


def solve(P):
    G = [[] for _ in range(N + 2)]
    for i in range(N + 2):
        for j in range(N + 2):
            if i == j: continue
            D = abs(X[i] - X[j]) + abs(Y[i] - Y[j])
            di = -(-D // P) - 1
            G[i].append((j, di))
    dist = dijkstra(0, G)
    return dist[1] <= K


ng, ok = 0, 2 * 10**5 + 10
while ok - ng > 1:
    mid = (ng + ok) // 2
    if solve(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0