結果

問題 No.3 ビットすごろく
ユーザー siro53siro53
提出日時 2019-01-09 18:37:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 797 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-01 09:12:36
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,008 KB
testcase_01 AC 34 ms
11,008 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 45 ms
11,008 KB
testcase_04 AC 37 ms
11,008 KB
testcase_05 AC 60 ms
11,264 KB
testcase_06 AC 47 ms
11,136 KB
testcase_07 AC 41 ms
11,136 KB
testcase_08 AC 55 ms
11,136 KB
testcase_09 AC 69 ms
11,264 KB
testcase_10 AC 79 ms
11,264 KB
testcase_11 AC 65 ms
11,264 KB
testcase_12 AC 60 ms
11,136 KB
testcase_13 AC 44 ms
11,008 KB
testcase_14 AC 73 ms
11,264 KB
testcase_15 AC 84 ms
11,392 KB
testcase_16 AC 81 ms
11,392 KB
testcase_17 AC 83 ms
11,392 KB
testcase_18 AC 43 ms
11,008 KB
testcase_19 AC 86 ms
11,520 KB
testcase_20 AC 36 ms
11,008 KB
testcase_21 AC 34 ms
11,008 KB
testcase_22 AC 75 ms
11,264 KB
testcase_23 AC 85 ms
11,392 KB
testcase_24 AC 86 ms
11,392 KB
testcase_25 AC 84 ms
11,392 KB
testcase_26 AC 34 ms
11,008 KB
testcase_27 AC 45 ms
10,880 KB
testcase_28 AC 80 ms
11,392 KB
testcase_29 AC 66 ms
11,264 KB
testcase_30 AC 35 ms
11,136 KB
testcase_31 AC 34 ms
11,008 KB
testcase_32 AC 63 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
import sys
INF = 1000000000

n = int(input())
d = [INF for i in range(n)]
visited=[False for i in range(n)] 
dx = [-1, 1]


def calk_walk(n):
    nn = bin(n)
    count = 0
    for i in range(len(nn)):
        if nn[i] == '1':
            count += 1
    return count


def bfs(p):
    q = queue.Queue()
    q.put(p)
    d[p] = 0

    while not q.empty():
        check = q.get()
        if check == n-1:
            break
        for i in range(2):
            np = check + calk_walk(check+1) * dx[i]
            if 0 <= np and np < n and visited[np] == False:
                q.put(np)
                d[np] = d[check] + 1
                visited[np] = True
    return d[n - 1]

if bfs(0) == INF:
    print(-1)
    sys.exit()
print(bfs(0) + 1)
0