結果

問題 No.2354 Poor Sight in Winter
ユーザー titiatitia
提出日時 2023-06-17 01:33:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,340 KB
最終ジャッジ日時 2024-06-24 19:19:59
合計ジャッジ時間 17,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,008 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 36 ms
52,812 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 49 ms
62,080 KB
testcase_10 AC 57 ms
65,024 KB
testcase_11 AC 331 ms
78,408 KB
testcase_12 AC 337 ms
78,788 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,162 ms
79,236 KB
testcase_16 AC 1,508 ms
80,260 KB
testcase_17 AC 1,551 ms
79,004 KB
testcase_18 AC 555 ms
78,540 KB
testcase_19 AC 1,307 ms
79,000 KB
testcase_20 AC 618 ms
78,320 KB
testcase_21 AC 155 ms
77,548 KB
testcase_22 AC 349 ms
78,268 KB
testcase_23 AC 347 ms
78,276 KB
testcase_24 AC 820 ms
78,952 KB
testcase_25 AC 227 ms
77,828 KB
testcase_26 AC 214 ms
78,156 KB
testcase_27 AC 107 ms
76,696 KB
testcase_28 AC 143 ms
77,660 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=[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