結果

問題 No.2354 Poor Sight in Winter
ユーザー timitimi
提出日時 2023-06-16 22:46:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-06-24 15:40:18
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,992 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 40 ms
52,864 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 48 ms
59,904 KB
testcase_10 AC 47 ms
59,776 KB
testcase_11 AC 361 ms
80,200 KB
testcase_12 AC 325 ms
79,552 KB
testcase_13 AC 596 ms
81,624 KB
testcase_14 AC 631 ms
82,944 KB
testcase_15 AC 497 ms
80,280 KB
testcase_16 AC 508 ms
80,780 KB
testcase_17 AC 577 ms
81,872 KB
testcase_18 AC 269 ms
78,612 KB
testcase_19 AC 467 ms
80,632 KB
testcase_20 AC 326 ms
78,796 KB
testcase_21 AC 124 ms
76,820 KB
testcase_22 AC 199 ms
78,040 KB
testcase_23 AC 223 ms
78,820 KB
testcase_24 AC 374 ms
79,660 KB
testcase_25 AC 194 ms
77,928 KB
testcase_26 AC 181 ms
77,736 KB
testcase_27 AC 99 ms
76,636 KB
testcase_28 AC 125 ms
77,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,K=map(int, input().split())
sx,sy,gx,gy=map(int, input().split())
A=[]
A.append((sx,sy))
for i in range(M):
  x,y=map(int, input().split())
  A.append((x,y))
A.append((gx,gy))
D=[[10**10]*len(A) for i in range(len(A))]
for i in range(len(A)):
  for j in range(len(A)):
    d=abs(A[i][0]-A[j][0])+abs(A[i][1]-A[j][1])
    D[i][j]=d 
    
N=M+2
import heapq
def dijkstra(s,p):
    hq=[(0,s,0)]
    ans=[]
    heapq.heapify(hq) # リストを優先度付きキューに変換
    cost=[10**6]*N # 行ったことのないところはinf
    cost[s]=0 # 開始地点は0
    while hq:
      c,v,pre=heapq.heappop(hq)
      if c>cost[v]: # コストが現在のコストよりも高ければスルー v:now u:nex
        continue
      for u in range(N):
        if pre==u:
          continue
        if D[u][v]%p==0:
          d=D[u][v]//p-1 
        else:
          d=D[u][v]//p
        d=max(d,0)
        tmp=d+cost[v]
        if tmp<cost[u]:
          cost[u]=tmp
          heapq.heappush(hq,(tmp,u,v))
    return cost

ng,ok=0,2*10**5
while ok-ng>1:
  mid=(ok+ng)//2
  c=dijkstra(0,mid)[-1]
  if c>K:
    ng=mid 
  else:
    ok=mid
print(ok)
0