結果

問題 No.2354 Poor Sight in Winter
ユーザー rlangevinrlangevin
提出日時 2023-06-16 22:44:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,404 KB
最終ジャッジ日時 2024-06-24 15:36:34
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
N += 2
X, Y = [0] * N, [0] * N
X[0], Y[0], X[-1], Y[-1] = map(int, input().split())
for i in range(1, N-1):
    X[i], Y[i] = map(int, input().split())
    
    
def check(P):
    inf = 10 ** 18
    dist = [inf] * N
    seen = [0] * N
    dist[0] = 0
    while True:
        mi = inf
        ind = -1
        for i in range(N):
            if seen[i]:
                continue
            if dist[i] < mi:
                ind = i
                mi = dist[i]
        if ind == -1:
            break
        seen[ind] = 1
        for i in range(N):
            d = abs(X[ind] - X[i]) + abs(Y[ind] - Y[i])
            cost = max(0, (d + P - 1)//P - 1)
            dist[i] = min(dist[i], dist[ind] + cost)
        
        if seen[-1]:
            return dist[-1] <= K
        
    return False
                

yes = 2 * 10 ** 5 + 5
no = 0
while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0