結果

問題 No.3 ビットすごろく
ユーザー mahiromahiro
提出日時 2020-01-11 19:41:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 682 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,856 KB
最終ジャッジ日時 2024-07-01 09:36:57
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,964 KB
testcase_01 AC 42 ms
52,016 KB
testcase_02 AC 42 ms
52,544 KB
testcase_03 AC 73 ms
73,960 KB
testcase_04 AC 43 ms
54,908 KB
testcase_05 AC 105 ms
76,120 KB
testcase_06 AC 76 ms
74,380 KB
testcase_07 AC 59 ms
66,528 KB
testcase_08 AC 99 ms
76,432 KB
testcase_09 AC 123 ms
76,792 KB
testcase_10 AC 127 ms
76,940 KB
testcase_11 AC 119 ms
76,684 KB
testcase_12 AC 105 ms
76,204 KB
testcase_13 AC 68 ms
70,828 KB
testcase_14 AC 129 ms
77,040 KB
testcase_15 AC 139 ms
77,464 KB
testcase_16 AC 138 ms
77,324 KB
testcase_17 AC 137 ms
77,596 KB
testcase_18 AC 61 ms
68,768 KB
testcase_19 AC 138 ms
77,056 KB
testcase_20 AC 42 ms
53,364 KB
testcase_21 AC 39 ms
52,432 KB
testcase_22 AC 125 ms
76,812 KB
testcase_23 AC 140 ms
77,320 KB
testcase_24 AC 142 ms
76,996 KB
testcase_25 AC 140 ms
77,856 KB
testcase_26 AC 39 ms
52,980 KB
testcase_27 AC 71 ms
72,676 KB
testcase_28 AC 135 ms
77,044 KB
testcase_29 AC 119 ms
77,184 KB
testcase_30 AC 40 ms
52,896 KB
testcase_31 AC 41 ms
53,988 KB
testcase_32 AC 114 ms
76,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


N = int(input())
visited = [False] * (N + 1)
visited[1] = True
queue = [(1, 1)]  # (訪問するまでにかかった移動数, 現在のマス)

ans = -1
while queue:
    q = heapq.heappop(queue)
    moved, now_space = q
    if now_space == N:
        ans = moved
        break
    next_move = bin(now_space).count("1")
    forward, backward = now_space + next_move, now_space - next_move
    if forward < N + 1 and not visited[forward]:
        visited[forward] = True
        heapq.heappush(queue, (moved + 1, forward))
    if backward > 0 and not visited[backward]:
        visited[backward] = True
        heapq.heappush(queue, (moved + 1, backward))
print(ans)
0