結果

問題 No.3 ビットすごろく
ユーザー FromBooskaFromBooska
提出日時 2023-02-14 22:13:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 73,276 KB
最終ジャッジ日時 2024-07-17 09:58:52
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,936 KB
testcase_01 AC 41 ms
54,308 KB
testcase_02 AC 41 ms
54,284 KB
testcase_03 AC 57 ms
67,108 KB
testcase_04 AC 46 ms
61,032 KB
testcase_05 AC 60 ms
69,076 KB
testcase_06 AC 59 ms
66,928 KB
testcase_07 AC 55 ms
67,324 KB
testcase_08 AC 59 ms
69,496 KB
testcase_09 AC 61 ms
70,792 KB
testcase_10 AC 63 ms
71,652 KB
testcase_11 AC 61 ms
69,888 KB
testcase_12 AC 59 ms
69,680 KB
testcase_13 AC 58 ms
66,856 KB
testcase_14 AC 62 ms
71,124 KB
testcase_15 AC 65 ms
72,376 KB
testcase_16 AC 64 ms
71,528 KB
testcase_17 AC 65 ms
72,292 KB
testcase_18 AC 57 ms
66,564 KB
testcase_19 AC 64 ms
72,920 KB
testcase_20 AC 44 ms
55,596 KB
testcase_21 AC 41 ms
54,156 KB
testcase_22 AC 62 ms
71,440 KB
testcase_23 AC 63 ms
73,276 KB
testcase_24 AC 63 ms
72,828 KB
testcase_25 AC 62 ms
72,584 KB
testcase_26 AC 41 ms
53,980 KB
testcase_27 AC 57 ms
67,728 KB
testcase_28 AC 61 ms
71,916 KB
testcase_29 AC 60 ms
69,600 KB
testcase_30 AC 42 ms
54,252 KB
testcase_31 AC 43 ms
53,884 KB
testcase_32 AC 61 ms
69,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 辺を張ってBFS or ダイクストラ法で間に合うか

N = int(input())
edges = [[] for i in range(N+1)]
for i in range(1, N):
    one_count = bin(i).count('1')
    if i+one_count <= N:
        edges[i].append(i+one_count)
    if i-one_count >= 1:
        edges[i].append(i-one_count)

from collections import deque
que = deque()
que.append(1)
INF = 10**10
distance = [INF]*(N+1)
distance[1] = 1
while que:
    current = que.popleft()
    for nxt in edges[current]:
        #print('current', current, 'nxt', nxt)
        if distance[nxt] > distance[current]+1:
            distance[nxt] = distance[current]+1
            que.append(nxt)
if distance[N] == INF:
    print(-1)
else:
    print(distance[N])





0