結果

問題 No.2354 Poor Sight in Winter
ユーザー ニックネームニックネーム
提出日時 2023-06-16 22:00:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 80,732 KB
最終ジャッジ日時 2024-06-24 14:10:31
合計ジャッジ時間 5,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,352 KB
testcase_01 AC 39 ms
52,336 KB
testcase_02 AC 40 ms
53,224 KB
testcase_03 AC 37 ms
52,924 KB
testcase_04 AC 39 ms
53,044 KB
testcase_05 AC 40 ms
54,000 KB
testcase_06 AC 39 ms
52,552 KB
testcase_07 AC 40 ms
53,364 KB
testcase_08 AC 41 ms
53,788 KB
testcase_09 AC 41 ms
53,188 KB
testcase_10 AC 46 ms
61,104 KB
testcase_11 AC 220 ms
80,252 KB
testcase_12 AC 164 ms
79,368 KB
testcase_13 AC 351 ms
80,476 KB
testcase_14 AC 341 ms
80,292 KB
testcase_15 AC 318 ms
80,732 KB
testcase_16 AC 308 ms
80,024 KB
testcase_17 AC 348 ms
80,532 KB
testcase_18 AC 216 ms
78,852 KB
testcase_19 AC 302 ms
79,104 KB
testcase_20 AC 241 ms
78,784 KB
testcase_21 AC 122 ms
77,056 KB
testcase_22 AC 190 ms
78,664 KB
testcase_23 AC 189 ms
78,788 KB
testcase_24 AC 253 ms
78,816 KB
testcase_25 AC 141 ms
77,692 KB
testcase_26 AC 140 ms
77,480 KB
testcase_27 AC 83 ms
76,700 KB
testcase_28 AC 111 ms
76,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,k = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
xy = [(sx,sy)]+[tuple(map(int,input().split())) for _ in range(n)]+[(gx,gy)]
dist = [[0]*(n+2) for _ in range(n+2)]
for i,(ix,iy) in enumerate(xy):
    for j,(jx,jy) in enumerate(xy): dist[i][j] = abs(ix-jx)+abs(iy-jy)
ng = 0; ok = dist[0][n+1]
while ok-ng>1:
    mid = (ng+ok)//2
    d = [0]+[10**9]*(n+1); f = [False]*(n+2); hq = [(0,0)]
    while hq:
        _,p = heappop(hq)
        if f[p]: continue
        f[p] = True
        for i in range(n+2):
            if p!=i and d[i]>d[p]+(dist[p][i]-1)//mid:
                d[i] = d[p]+(dist[p][i]-1)//mid
                heappush(hq,(d[p]+(dist[p][i]-1)//mid,i))
    if d[n+1]<=k: ok = mid
    else: ng = mid
print(ok)
0