結果

問題 No.2354 Poor Sight in Winter
ユーザー lloyzlloyz
提出日時 2023-06-17 20:39:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 81,148 KB
最終ジャッジ日時 2024-06-25 10:27:20
合計ジャッジ時間 8,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,120 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 44 ms
52,864 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 42 ms
53,228 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 57 ms
64,256 KB
testcase_10 AC 60 ms
65,920 KB
testcase_11 AC 395 ms
79,616 KB
testcase_12 AC 476 ms
79,224 KB
testcase_13 AC 560 ms
80,380 KB
testcase_14 AC 618 ms
80,924 KB
testcase_15 AC 467 ms
79,872 KB
testcase_16 AC 570 ms
80,836 KB
testcase_17 AC 568 ms
81,148 KB
testcase_18 AC 293 ms
79,244 KB
testcase_19 AC 441 ms
80,000 KB
testcase_20 AC 276 ms
78,440 KB
testcase_21 AC 156 ms
77,744 KB
testcase_22 AC 270 ms
78,952 KB
testcase_23 AC 232 ms
78,560 KB
testcase_24 AC 392 ms
79,468 KB
testcase_25 AC 201 ms
78,316 KB
testcase_26 AC 208 ms
78,040 KB
testcase_27 AC 114 ms
76,700 KB
testcase_28 AC 143 ms
77,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n, k = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
P = [list(map(int, input().split())) for _ in range(n)]
P = [[sx, sy]] + P + [[gx, gy]]
D = [[0 for _ in range(n + 2)] for _ in range(n + 2)]
for i in range(n + 2):
    for j in range(n + 2):
        D[i][j] = abs(P[i][0] - P[j][0]) + abs(P[i][1] - P[j][1])

INF = 10**18
l, r = 0, INF
while r - l > 1:
    mid = (l + r) // 2
    C = [INF for _ in range(n + 2)]
    C[0] = 0
    H = [(0, 0)]
    while H:
        ccnt, cp = heappop(H)
        if cp == n + 1:
            break
        if ccnt > C[cp]:
            continue
        for np in range(n + 2):
            if np == cp:
                continue
            ncnt = ccnt + (D[cp][np] - 1) // mid
            if ncnt >= C[np]:
                continue
            C[np] = ncnt
            heappush(H, (C[np], np))
    if C[n + 1] > k:
        l = mid
    else:
        r = mid
print(r)
0