結果

問題 No.1465 Archaea
ユーザー Kiri8128Kiri8128
提出日時 2021-04-02 21:55:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-06-06 10:30:18
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 40 ms
53,248 KB
testcase_07 AC 51 ms
62,464 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 52 ms
62,848 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 53 ms
63,744 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 58 ms
66,432 KB
testcase_14 AC 52 ms
62,464 KB
testcase_15 AC 42 ms
53,248 KB
testcase_16 AC 44 ms
53,888 KB
testcase_17 AC 60 ms
67,200 KB
testcase_18 AC 50 ms
60,928 KB
testcase_19 AC 55 ms
64,256 KB
testcase_20 AC 55 ms
64,768 KB
testcase_21 AC 60 ms
67,328 KB
testcase_22 AC 61 ms
67,584 KB
testcase_23 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N, K = map(int, input().split())

def BFS_dist(n, i0=0):
    Q = deque([i0])
    D = [-1] * n
    D[i0] = 0
    while Q:
        x = Q.popleft()
        if x % 2 == 0:
            c = x // 2
            if c > 0 and D[c] == -1:
                D[c] = D[x] + 1
                Q.append(c)
        if x - 3 > 0:
            c = x - 3
            if c > 0 and D[c] == -1:
                D[c] = D[x] + 1
                Q.append(c)
    return D

D = BFS_dist(N + 1, N)
print("YES" if 0 <= D[1] <= K else "NO")
0