結果

問題 No.3 ビットすごろく
ユーザー howakurohowakuro
提出日時 2019-01-08 20:52:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 533 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,664 KB
最終ジャッジ日時 2024-11-24 00:47:35
合計ジャッジ時間 81,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
17,572 KB
testcase_01 AC 33 ms
28,672 KB
testcase_02 AC 35 ms
28,544 KB
testcase_03 AC 81 ms
17,572 KB
testcase_04 AC 39 ms
28,544 KB
testcase_05 AC 746 ms
18,340 KB
testcase_06 AC 88 ms
28,416 KB
testcase_07 AC 55 ms
17,440 KB
testcase_08 AC 272 ms
28,928 KB
testcase_09 AC 4,699 ms
21,504 KB
testcase_10 TLE -
testcase_11 AC 2,791 ms
33,664 KB
testcase_12 AC 609 ms
11,520 KB
testcase_13 AC 70 ms
10,752 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 59 ms
10,624 KB
testcase_19 TLE -
testcase_20 AC 35 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 76 ms
10,752 KB
testcase_28 TLE -
testcase_29 AC 3,035 ms
15,232 KB
testcase_30 AC 31 ms
10,496 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 1,830 ms
31,872 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    reach[node[0] - 1] = 1
    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))
print(-1)
  
0