結果

問題 No.2354 Poor Sight in Winter
ユーザー titiatitia
提出日時 2023-06-17 01:32:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 728 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,944 KB
最終ジャッジ日時 2024-06-24 18:44:00
合計ジャッジ時間 16,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 45 ms
53,120 KB
testcase_03 RE -
testcase_04 AC 44 ms
52,736 KB
testcase_05 RE -
testcase_06 AC 45 ms
52,736 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 63 ms
63,360 KB
testcase_11 AC 379 ms
78,072 KB
testcase_12 AC 360 ms
78,832 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,239 ms
79,372 KB
testcase_16 AC 1,649 ms
79,944 KB
testcase_17 AC 1,501 ms
78,820 KB
testcase_18 AC 612 ms
78,448 KB
testcase_19 AC 1,285 ms
78,884 KB
testcase_20 AC 655 ms
78,312 KB
testcase_21 AC 178 ms
77,472 KB
testcase_22 AC 381 ms
78,320 KB
testcase_23 AC 373 ms
78,200 KB
testcase_24 AC 859 ms
78,672 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 164 ms
77,608 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=-1

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

    DP=[1<<30]*(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