結果

問題 No.2354 Poor Sight in Winter
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-16 22:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-06-24 15:06:08
合計ジャッジ時間 6,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,600 KB
testcase_01 AC 40 ms
54,536 KB
testcase_02 AC 41 ms
54,540 KB
testcase_03 AC 37 ms
53,012 KB
testcase_04 AC 38 ms
53,532 KB
testcase_05 AC 37 ms
52,528 KB
testcase_06 AC 36 ms
53,784 KB
testcase_07 AC 37 ms
53,776 KB
testcase_08 AC 39 ms
53,420 KB
testcase_09 AC 40 ms
54,080 KB
testcase_10 AC 49 ms
62,516 KB
testcase_11 AC 236 ms
78,160 KB
testcase_12 AC 187 ms
77,752 KB
testcase_13 AC 461 ms
79,216 KB
testcase_14 AC 456 ms
80,064 KB
testcase_15 AC 425 ms
80,128 KB
testcase_16 AC 436 ms
79,632 KB
testcase_17 AC 456 ms
79,636 KB
testcase_18 AC 277 ms
78,920 KB
testcase_19 AC 357 ms
78,616 KB
testcase_20 AC 297 ms
79,048 KB
testcase_21 AC 140 ms
77,728 KB
testcase_22 AC 228 ms
78,716 KB
testcase_23 AC 230 ms
78,636 KB
testcase_24 AC 345 ms
79,016 KB
testcase_25 AC 170 ms
77,748 KB
testcase_26 AC 169 ms
78,372 KB
testcase_27 AC 88 ms
76,420 KB
testcase_28 AC 124 ms
77,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import math
import heapq

N,K = map(int,stdin.readline().split())

sx,sy,gx,gy = map(int,stdin.readline().split())

xy = [(sx,sy)]
for i in range(N):
    x,y = map(int,stdin.readline().split())
    xy.append((x,y))
xy.append((gx,gy))

N += 2

l = 0
r = abs(sx-gx) + abs(sy-gy) + 1

while r-l != 1:

    P = (l+r)//2

    d = [float("inf")] * N
    d[0] = 0

    q = [ (0,0) ]

    while q:
        c,v = heapq.heappop(q)
        if d[v] != c:
            continue
        vx,vy = xy[v]

        for nex in range(N):
            nx,ny = xy[nex]
            ln = (abs(nx-vx)+abs(ny-vy)+P-1) // P + d[v] - 1

            if nex != v and d[nex] > ln:
                d[nex] = ln
                heapq.heappush(q,(ln,nex))
    
    # print (l,r,d)
    if d[-1] <= K:
        r = P
    else:
        l = P

print (r)
0