結果

問題 No.3 ビットすごろく
ユーザー dangodango
提出日時 2023-06-14 21:03:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 274,480 KB
最終ジャッジ日時 2024-06-23 03:10:17
合計ジャッジ時間 15,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 80 ms
76,252 KB
testcase_04 AC 59 ms
67,840 KB
testcase_05 AC 249 ms
80,800 KB
testcase_06 AC 82 ms
76,356 KB
testcase_07 AC 71 ms
76,112 KB
testcase_08 AC 132 ms
77,540 KB
testcase_09 AC 1,148 ms
119,628 KB
testcase_10 AC 3,001 ms
234,684 KB
testcase_11 AC 720 ms
100,284 KB
testcase_12 AC 205 ms
79,912 KB
testcase_13 AC 74 ms
76,420 KB
testcase_14 AC 2,497 ms
201,128 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def min_moves(N: int) -> int:
    from collections import deque
    queue = deque([(1, 0)])
    visited = set()
    while queue:
        pos, moves = queue.popleft()
        if pos == N:
            return moves + 1
        visited.add(pos)
        next_moves = bin(pos).count('1')
        if pos + next_moves <= N and pos + next_moves not in visited:
            queue.append((pos + next_moves, moves + 1))
        if pos - next_moves > 0 and pos - next_moves not in visited:
            queue.append((pos - next_moves, moves + 1))
    return -1
print(min_moves(int(input())))
0