結果

問題 No.3 ビットすごろく
ユーザー howakurohowakuro
提出日時 2019-01-08 21:10:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,016 KB
最終ジャッジ日時 2024-05-03 03:47:51
合計ジャッジ時間 13,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 83 ms
10,624 KB
testcase_04 AC 41 ms
10,624 KB
testcase_05 AC 794 ms
11,648 KB
testcase_06 AC 88 ms
10,624 KB
testcase_07 AC 56 ms
10,624 KB
testcase_08 AC 299 ms
11,136 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
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 #

from collections import deque

def convert_bit(x):
    return bin(x).count("1")

N = int(input())
q = deque([(1,1)])
reach = [0 for i in range(N)]
empty = deque([])
while q != empty:
    node = q.popleft()
    if node[0] == N:
        print(node[1])
        exit()
    move = convert_bit(node[0])
    for m in [move,-move]:
        next_pos = m + node[0]
        if not 1 <= next_pos <= N:
            continue 
        if reach[next_pos - 1] == 0:
            q.append((next_pos,node[1] + 1))
            reach[node[0] - 1] = 1
print(-1)
  
0