結果

問題 No.3 ビットすごろく
ユーザー ゆるくゆるく
提出日時 2014-10-01 01:49:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 573 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,572 KB
最終ジャッジ日時 2024-06-09 15:07:59
合計ジャッジ時間 10,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 60 ms
10,880 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 441 ms
11,904 KB
testcase_06 AC 61 ms
10,880 KB
testcase_07 AC 39 ms
10,880 KB
testcase_08 AC 166 ms
11,264 KB
testcase_09 AC 2,692 ms
17,152 KB
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

N = int(input())


def bfs():
    v = deque([False] * (N + 1))
    q = deque()
    q.append([1,1])
    count = 0
    while(q):
        u = q.popleft()
        v[u[0]] = True
        bit1_count = '{:b}'.format(u[0]).count('1')
        v1 = u[0] + bit1_count
        v2 = u[0] - bit1_count
        if u[0] == N:
            return u[1]
        if (0 < v1 <= N) and not v[v1]:
            q.append([v1,u[1] + 1])
        if (0 < v2 <= N) and not v[v2]:
            q.append([v2, u[1] + 1])
    return -1

print(bfs())

0