結果

問題 No.1465 Archaea
コンテスト
ユーザー yuusanlondon
提出日時 2021-04-02 21:54:24
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 620 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 289 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 115,220 KB
最終ジャッジ日時 2026-05-29 21:52:52
合計ジャッジ時間 4,031 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import heapq
INF=10**9
def Dijkstra(graph, start):
  dist=[INF]*len(graph)
  queue=[(0, start)]
  dist[start]=0
  while queue:
    path_len, v=heapq.heappop(queue)
    if path_len==dist[v]: 
      for w in graph[v]:
        if dist[w[0]]>path_len+w[1]:
          heapq.heappush(queue, (path_len+w[1], w[0]))
          dist[w[0]]=path_len+w[1]     
  return dist
graph=[]
n,k=map(int,input().split())
for i in range(n+1):
  graph.append([])

for i in range(1,n+1):
  if i+3<=n:
    graph[i].append((i+3,1))
  if i*2<=n:
    graph[i].append((2*i,1))
dist=Dijkstra(graph,1)
if dist[n]<=k:
  print('YES')
else:
  print('NO')
0