結果

問題 No.2354 Poor Sight in Winter
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-16 22:25:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,066 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 87,472 KB
最終ジャッジ日時 2024-06-24 14:59:17
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,192 KB
testcase_01 AC 49 ms
55,872 KB
testcase_02 AC 48 ms
56,252 KB
testcase_03 WA -
testcase_04 AC 44 ms
55,876 KB
testcase_05 WA -
testcase_06 AC 47 ms
56,456 KB
testcase_07 AC 46 ms
56,216 KB
testcase_08 AC 44 ms
56,852 KB
testcase_09 AC 53 ms
64,092 KB
testcase_10 AC 51 ms
64,844 KB
testcase_11 AC 239 ms
86,452 KB
testcase_12 AC 217 ms
86,316 KB
testcase_13 AC 341 ms
87,320 KB
testcase_14 AC 369 ms
87,472 KB
testcase_15 AC 301 ms
87,388 KB
testcase_16 AC 316 ms
87,048 KB
testcase_17 AC 304 ms
87,216 KB
testcase_18 AC 205 ms
80,952 KB
testcase_19 AC 278 ms
84,540 KB
testcase_20 AC 225 ms
82,260 KB
testcase_21 AC 114 ms
78,380 KB
testcase_22 AC 178 ms
80,068 KB
testcase_23 AC 185 ms
79,684 KB
testcase_24 AC 246 ms
83,028 KB
testcase_25 WA -
testcase_26 AC 153 ms
78,436 KB
testcase_27 AC 82 ms
76,868 KB
testcase_28 AC 99 ms
77,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,K = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
xy = [tuple(map(int,input().split())) for _ in range(N)]
xy = [(sx,sy)] + xy + [(gx,gy)]
e = [[] for _ in range(N+2)]
for i in range(N+1):
    xi,yi = xy[i]
    for j in range(i+1,N+2):
        xj,yj = xy[j]
        d = abs(xi-xj)+abs(yi-yj)
        e[i].append((j,d))
        e[j].append((i,d))
INF = (1<<30)
def dijkstra(s,e,k):
    
    N = len(e)
    dist = [INF]*N
    dist[s]=0
    h = []
    heappush(h,(0,s))
    while h:
        nw,v = heappop(h)
        if dist[v]!=nw:
            continue
        for iv,ic in e[v]:
            nc = (ic-1)//k + nw
            if nc < dist[iv]:
                dist[iv] = nc
                heappush(h,(nc,iv))
    return dist
    
    
def is_ok(k):
    
    return dijkstra(0,e,k)[N+1]<=K
    
x = 1
y = 10**5
while y-x>1:
    mid = (y+x)//2
    if is_ok(mid):
        y = mid
    else:
        x = mid
print(y)
0