結果

問題 No.2354 Poor Sight in Winter
ユーザー minimumminimum
提出日時 2023-06-16 22:44:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,834 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-06-24 15:36:16
合計ジャッジ時間 12,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 44 ms
52,736 KB
testcase_09 AC 49 ms
61,184 KB
testcase_10 AC 54 ms
64,256 KB
testcase_11 AC 221 ms
76,032 KB
testcase_12 AC 225 ms
76,288 KB
testcase_13 AC 1,834 ms
76,408 KB
testcase_14 AC 1,380 ms
76,440 KB
testcase_15 AC 904 ms
76,908 KB
testcase_16 AC 1,133 ms
76,184 KB
testcase_17 AC 1,200 ms
76,444 KB
testcase_18 AC 415 ms
76,476 KB
testcase_19 AC 968 ms
76,756 KB
testcase_20 AC 480 ms
76,548 KB
testcase_21 AC 106 ms
76,716 KB
testcase_22 AC 226 ms
76,216 KB
testcase_23 AC 244 ms
76,340 KB
testcase_24 AC 607 ms
76,580 KB
testcase_25 AC 164 ms
76,416 KB
testcase_26 AC 145 ms
76,284 KB
testcase_27 AC 88 ms
76,544 KB
testcase_28 AC 95 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
import sys
input = sys.stdin.readline
INF = 10 ** 18
C = 10 ** 7

def main():
    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 = 2 * 10 ** 5 + 10
    while hi - lo > 1:
        p = (hi + lo) // 2
        if solve(p):
            hi = p
        else:
            lo = p

    print(hi)

if __name__ == "__main__":
    main()
0