結果

問題 No.2354 Poor Sight in Winter
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-16 22:24:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 80,360 KB
最終ジャッジ日時 2024-08-16 22:24:54
合計ジャッジ時間 10,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 41 ms
52,864 KB
testcase_06 AC 41 ms
52,864 KB
testcase_07 AC 41 ms
52,700 KB
testcase_08 AC 43 ms
52,864 KB
testcase_09 AC 51 ms
60,928 KB
testcase_10 AC 54 ms
61,952 KB
testcase_11 AC 379 ms
78,564 KB
testcase_12 AC 381 ms
78,360 KB
testcase_13 AC 659 ms
80,344 KB
testcase_14 AC 635 ms
80,360 KB
testcase_15 AC 634 ms
80,348 KB
testcase_16 AC 644 ms
80,064 KB
testcase_17 AC 626 ms
80,352 KB
testcase_18 AC 401 ms
79,528 KB
testcase_19 AC 552 ms
80,224 KB
testcase_20 AC 421 ms
79,600 KB
testcase_21 AC 211 ms
78,080 KB
testcase_22 AC 374 ms
79,144 KB
testcase_23 AC 348 ms
79,188 KB
testcase_24 AC 499 ms
80,012 KB
testcase_25 AC 273 ms
78,300 KB
testcase_26 AC 298 ms
79,620 KB
testcase_27 AC 128 ms
77,024 KB
testcase_28 AC 194 ms
78,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
sx,sy,gx,gy=map(int,input().split())
sx,sy=sx+sy,sx-sy
gx,gy=gx+gy,gx-gy
p=[(sx,sy)]
for i in range(n):
  x,y=map(int,input().split())
  p+=[(x+y,x-y)]
p+=[(gx,gy)]
n+=2
ok=10**6
ng=0
from heapq import heappush,heappop
while ok-ng>1:
  m=(ok+ng)//2
  X=1<<60
  v=[X]*n
  v[0]=0
  q=[(v[0],0)]
  while len(q)>0:
    sc,sp=heappop(q)
    sx,sy=p[sp]
    if sc>v[sp]:
      continue
    for tp in range(n):
      tx,ty=p[tp]
      tc=max(max(abs(tx-sx),abs(ty-sy))-1,0)//m
      if v[tp]>sc+tc:
        v[tp]=sc+tc
        heappush(q,(v[tp],tp))
  if v[-1]<=K:
    ok=m
  else:
    ng=m
print(ok)
0