結果

問題 No.3 ビットすごろく
ユーザー papinniepapinnie
提出日時 2019-09-19 17:47:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 549 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-07-01 09:31:14
合計ジャッジ時間 21,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
43,836 KB
testcase_01 AC 539 ms
44,208 KB
testcase_02 AC 522 ms
43,728 KB
testcase_03 AC 531 ms
44,080 KB
testcase_04 AC 525 ms
43,952 KB
testcase_05 AC 540 ms
43,828 KB
testcase_06 AC 533 ms
44,088 KB
testcase_07 AC 521 ms
43,952 KB
testcase_08 AC 523 ms
43,828 KB
testcase_09 AC 541 ms
43,696 KB
testcase_10 AC 544 ms
44,084 KB
testcase_11 AC 547 ms
44,088 KB
testcase_12 AC 528 ms
43,956 KB
testcase_13 AC 523 ms
44,212 KB
testcase_14 AC 538 ms
44,204 KB
testcase_15 AC 544 ms
44,180 KB
testcase_16 AC 536 ms
43,824 KB
testcase_17 AC 537 ms
44,204 KB
testcase_18 AC 528 ms
43,832 KB
testcase_19 AC 537 ms
43,948 KB
testcase_20 AC 536 ms
43,832 KB
testcase_21 AC 532 ms
44,340 KB
testcase_22 AC 545 ms
44,208 KB
testcase_23 AC 549 ms
43,832 KB
testcase_24 AC 542 ms
44,216 KB
testcase_25 AC 545 ms
44,332 KB
testcase_26 AC 524 ms
44,088 KB
testcase_27 AC 530 ms
44,208 KB
testcase_28 AC 536 ms
43,820 KB
testcase_29 AC 534 ms
43,824 KB
testcase_30 AC 516 ms
44,344 KB
testcase_31 AC 514 ms
43,964 KB
testcase_32 AC 538 ms
43,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import numpy as np

N = int(input())
moves = [bin(x).count('1') for x in range(N+1)]

routes = []

reachables = np.zeros(N+1, dtype=bool)
q = deque([(1,1)])
reachables[1] = True
while(q):
    n, c = q.popleft()
   
    if n == N:
        routes.append(c)
        break
    else:
        back, go =  moves[n]* -1 + n, moves[n]  + n
        for target in [go, back]:
            if (1 < target <= N) and not reachables[target]:
                reachables[target] = True
                q.append((target, c+1))

if len(routes) == 0:
    print(-1)  # unreachable
else:
    print(min(routes))
0