結果

問題 No.2354 Poor Sight in Winter
ユーザー minimumminimum
提出日時 2023-06-16 22:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,914 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-06-24 15:22:02
合計ジャッジ時間 13,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,160 KB
testcase_01 AC 38 ms
53,000 KB
testcase_02 AC 39 ms
53,596 KB
testcase_03 AC 38 ms
52,748 KB
testcase_04 AC 39 ms
54,092 KB
testcase_05 AC 39 ms
53,548 KB
testcase_06 AC 39 ms
53,424 KB
testcase_07 AC 39 ms
53,664 KB
testcase_08 AC 39 ms
53,068 KB
testcase_09 AC 49 ms
62,308 KB
testcase_10 AC 53 ms
63,660 KB
testcase_11 AC 267 ms
77,172 KB
testcase_12 AC 273 ms
77,104 KB
testcase_13 AC 1,914 ms
77,544 KB
testcase_14 AC 1,407 ms
77,708 KB
testcase_15 AC 977 ms
78,080 KB
testcase_16 AC 1,336 ms
77,332 KB
testcase_17 AC 1,344 ms
77,336 KB
testcase_18 AC 460 ms
77,900 KB
testcase_19 AC 1,074 ms
77,460 KB
testcase_20 AC 543 ms
77,200 KB
testcase_21 AC 126 ms
76,816 KB
testcase_22 AC 280 ms
77,332 KB
testcase_23 AC 280 ms
77,320 KB
testcase_24 AC 667 ms
77,716 KB
testcase_25 AC 180 ms
76,276 KB
testcase_26 AC 176 ms
76,820 KB
testcase_27 AC 92 ms
76,216 KB
testcase_28 AC 118 ms
77,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


INF = 10 ** 18
C = 10 ** 7
N, K = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
X, Y = [sx, gx], [sy, gy]
for _ in range(N):
    x, y = map(int, input().split())
    X.append(x)
    Y.append(y)

def solve(P):
    hq = []
    heappush(hq, 0)
    dist = [INF] * (N + 2)
    dist[0] = 0
    while hq:
        now = heappop(hq) % C
        for i in range(N + 2):
            if now == i:
                continue
            ndist = dist[now] + (abs(X[i] - X[now]) + abs(Y[i] - Y[now]) - 1) // P
            if dist[i] > ndist:
                dist[i] = ndist
                heappush(hq, ndist * C + i)
    return dist[1] <= K


lo = 0
hi = 10 ** 6
while hi - lo > 1:
    p = (hi + lo) // 2
    if solve(p):
        hi = p
    else:
        lo = p

print(hi)
0