結果

問題 No.2354 Poor Sight in Winter
ユーザー titiatitia
提出日時 2023-06-17 01:39:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,552 KB
最終ジャッジ日時 2024-06-24 19:24:41
合計ジャッジ時間 8,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 43 ms
52,864 KB
testcase_03 AC 43 ms
52,864 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 43 ms
53,120 KB
testcase_06 AC 42 ms
52,736 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 43 ms
52,864 KB
testcase_09 AC 54 ms
60,928 KB
testcase_10 AC 65 ms
65,280 KB
testcase_11 AC 248 ms
77,568 KB
testcase_12 AC 361 ms
78,660 KB
testcase_13 AC 378 ms
78,768 KB
testcase_14 AC 1,062 ms
78,932 KB
testcase_15 AC 431 ms
78,728 KB
testcase_16 AC 857 ms
79,552 KB
testcase_17 AC 570 ms
79,072 KB
testcase_18 AC 265 ms
78,060 KB
testcase_19 AC 444 ms
78,360 KB
testcase_20 AC 226 ms
77,800 KB
testcase_21 AC 151 ms
77,728 KB
testcase_22 AC 287 ms
77,936 KB
testcase_23 AC 220 ms
78,160 KB
testcase_24 AC 445 ms
78,440 KB
testcase_25 AC 243 ms
77,876 KB
testcase_26 AC 231 ms
78,028 KB
testcase_27 AC 124 ms
76,544 KB
testcase_28 AC 156 ms
77,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,K=map(int,input().split())
sx,sy,gx,gy=map(int,input().split())
P=[list(map(int,input().split())) for i in range(N)]

P.append([sx,sy])
P.append([gx,gy])

OK=2*10**5
NG=0

while OK>NG+1:
    mid=(OK+NG)//2

    DP=[K+1]*(N+2)
    DP[N]=0

    Q=[(0,N)]

    while Q:
        dis,ind=heappop(Q)

        x,y=P[ind]

        for i in range(N+2):
            z,w=P[i]

            dis=abs(x-z)+abs(y-w)
            dis-=mid

            k=max(0,(dis+mid-1)//mid)

            if DP[i]>DP[ind]+k:
                DP[i]=DP[ind]+k
                heappush(Q,(DP[i],i))

    if DP[N+1]<=K:
        OK=mid
    else:
        NG=mid

print(OK)

            
0