結果

問題 No.2354 Poor Sight in Winter
ユーザー とりゐとりゐ
提出日時 2023-06-16 22:33:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 80,156 KB
最終ジャッジ日時 2024-06-24 15:11:46
合計ジャッジ時間 8,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,880 KB
testcase_01 AC 42 ms
54,572 KB
testcase_02 AC 40 ms
54,024 KB
testcase_03 AC 40 ms
54,220 KB
testcase_04 AC 40 ms
54,320 KB
testcase_05 AC 39 ms
52,880 KB
testcase_06 AC 40 ms
53,656 KB
testcase_07 AC 40 ms
53,308 KB
testcase_08 AC 40 ms
53,632 KB
testcase_09 AC 51 ms
63,208 KB
testcase_10 AC 53 ms
63,940 KB
testcase_11 AC 331 ms
78,196 KB
testcase_12 AC 353 ms
78,112 KB
testcase_13 AC 545 ms
79,776 KB
testcase_14 AC 588 ms
80,156 KB
testcase_15 AC 559 ms
79,320 KB
testcase_16 AC 569 ms
79,508 KB
testcase_17 AC 548 ms
79,276 KB
testcase_18 AC 351 ms
78,564 KB
testcase_19 AC 469 ms
79,552 KB
testcase_20 AC 362 ms
79,060 KB
testcase_21 AC 194 ms
78,340 KB
testcase_22 AC 301 ms
79,124 KB
testcase_23 AC 298 ms
78,920 KB
testcase_24 AC 424 ms
79,268 KB
testcase_25 AC 221 ms
78,080 KB
testcase_26 AC 212 ms
78,108 KB
testcase_27 AC 106 ms
76,196 KB
testcase_28 AC 158 ms
77,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
sx,sy,gx,gy=map(int,input().split())
xy=[]
xy.append((sx,sy))
xy.append((gx,gy))
for i in range(n):
  x,y=map(int,input().split())
  xy.append((x,y))

def dist(i,j,s):
  xi,yi=xy[i]
  xj,yj=xy[j]
  d=abs(xi-xj)+abs(yi-yj)
  return (d+s-1)//s-1

from heapq import heappush, heappop

n+=2
inf=1<<60
def calc(mid):
  D=[inf]*n
  D[0]=0
  seen=[False]*n
  hq=[(0,0)]
  while hq:
    w,v=heappop(hq)
    if D[v]<w:
      continue
    seen[v]=True
    for u in range(n):
      res=w+dist(u,v,mid)
      if seen[u]==False and res<D[u]:
        D[u]=res
        heappush(hq,(res,u))
  return D[1]
  


ng,ok=0,3*10**5
while abs(ok-ng)>1:
  mid=(ok+ng)//2
  if calc(mid)<=k:
    ok=mid
  else:
    ng=mid
    
print(ok)
0