結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
44,220 KB
testcase_01 AC 457 ms
44,228 KB
testcase_02 AC 458 ms
44,384 KB
testcase_03 AC 468 ms
43,832 KB
testcase_04 AC 457 ms
44,092 KB
testcase_05 AC 466 ms
43,836 KB
testcase_06 AC 476 ms
44,092 KB
testcase_07 AC 469 ms
43,704 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 475 ms
43,964 KB
testcase_13 AC 463 ms
44,476 KB
testcase_14 AC 549 ms
43,704 KB
testcase_15 AC 481 ms
44,224 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 479 ms
44,100 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 463 ms
43,960 KB
testcase_22 AC 481 ms
44,224 KB
testcase_23 AC 481 ms
44,092 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 468 ms
44,088 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 470 ms
44,220 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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)])
while(len(q)):
    n, c = q.pop()
    reachables[n] = True
    if n == N:
        routes.append(c)
    else:
        back, go =  -1 * moves[n] + n, moves[n] + n
        for target in [back, go]:
            if (1 < target <= N) and not reachables[target]:
                q.append((target, c+1))

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