結果

問題 No.1465 Archaea
ユーザー rodearodea
提出日時 2021-04-09 16:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 79,256 KB
最終ジャッジ日時 2024-06-24 23:29:28
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 50 ms
60,672 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 110 ms
77,428 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 121 ms
77,304 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 116 ms
77,212 KB
testcase_12 AC 62 ms
66,288 KB
testcase_13 AC 142 ms
78,540 KB
testcase_14 AC 115 ms
77,164 KB
testcase_15 AC 54 ms
63,104 KB
testcase_16 AC 61 ms
66,944 KB
testcase_17 AC 138 ms
78,304 KB
testcase_18 AC 99 ms
76,660 KB
testcase_19 AC 120 ms
77,224 KB
testcase_20 AC 130 ms
77,832 KB
testcase_21 AC 152 ms
79,256 KB
testcase_22 AC 156 ms
78,976 KB
testcase_23 AC 40 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n, k = map(int, input().split())

dp = [10 ** 9] * (n + 1)
dp[1] = 0
que = [1]
heapq.heapify(que)
while len(que):
    cur = heapq.heappop(que)
    if cur * 2 <= n and dp[cur] + 1 < dp[cur * 2]:
        dp[cur * 2] = dp[cur] + 1
        heapq.heappush(que, cur * 2)
    if cur + 3 <= n and dp[cur] + 1 < dp[cur + 3]:
        dp[cur + 3] = dp[cur] + 1
        heapq.heappush(que, cur + 3)

print("YES") if dp[n] <= k else print("NO")
0