結果

問題 No.2354 Poor Sight in Winter
ユーザー minimumminimum
提出日時 2023-06-16 22:35:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 806 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 79,088 KB
最終ジャッジ日時 2024-06-24 15:16:47
合計ジャッジ時間 14,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,700 KB
testcase_01 AC 40 ms
53,404 KB
testcase_02 AC 40 ms
52,748 KB
testcase_03 AC 40 ms
53,072 KB
testcase_04 AC 40 ms
53,420 KB
testcase_05 AC 40 ms
53,724 KB
testcase_06 AC 42 ms
53,704 KB
testcase_07 AC 45 ms
53,432 KB
testcase_08 AC 41 ms
53,152 KB
testcase_09 AC 51 ms
62,204 KB
testcase_10 AC 56 ms
65,192 KB
testcase_11 AC 287 ms
77,196 KB
testcase_12 AC 286 ms
77,232 KB
testcase_13 TLE -
testcase_14 AC 1,544 ms
78,292 KB
testcase_15 AC 1,070 ms
78,320 KB
testcase_16 AC 1,417 ms
79,088 KB
testcase_17 AC 1,426 ms
78,868 KB
testcase_18 AC 529 ms
78,584 KB
testcase_19 AC 1,142 ms
78,116 KB
testcase_20 AC 597 ms
78,052 KB
testcase_21 AC 144 ms
77,228 KB
testcase_22 AC 322 ms
78,104 KB
testcase_23 AC 332 ms
77,600 KB
testcase_24 AC 730 ms
78,248 KB
testcase_25 AC 208 ms
77,168 KB
testcase_26 AC 202 ms
77,196 KB
testcase_27 AC 102 ms
76,356 KB
testcase_28 AC 133 ms
76,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


INF = 10 ** 18
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, 0))
    dist = [INF] * (N + 2)
    dist[0] = 0
    while hq:
        _, now = heappop(hq)
        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, 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