結果

問題 No.3 ビットすごろく
ユーザー HydruHydru
提出日時 2023-01-15 13:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-08 16:38:55
合計ジャッジ時間 3,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 59 ms
66,688 KB
testcase_04 AC 53 ms
60,416 KB
testcase_05 AC 69 ms
71,808 KB
testcase_06 AC 60 ms
67,072 KB
testcase_07 AC 52 ms
64,000 KB
testcase_08 AC 63 ms
69,888 KB
testcase_09 AC 75 ms
75,264 KB
testcase_10 AC 85 ms
76,800 KB
testcase_11 AC 80 ms
74,856 KB
testcase_12 AC 72 ms
71,936 KB
testcase_13 AC 58 ms
65,408 KB
testcase_14 AC 80 ms
76,896 KB
testcase_15 AC 82 ms
76,928 KB
testcase_16 AC 80 ms
76,672 KB
testcase_17 AC 79 ms
76,928 KB
testcase_18 AC 53 ms
64,496 KB
testcase_19 AC 85 ms
76,800 KB
testcase_20 AC 50 ms
60,416 KB
testcase_21 AC 46 ms
53,376 KB
testcase_22 AC 81 ms
76,928 KB
testcase_23 AC 80 ms
76,544 KB
testcase_24 AC 80 ms
77,056 KB
testcase_25 AC 80 ms
76,544 KB
testcase_26 AC 43 ms
54,016 KB
testcase_27 AC 60 ms
66,560 KB
testcase_28 AC 75 ms
76,848 KB
testcase_29 AC 72 ms
74,624 KB
testcase_30 AC 42 ms
53,760 KB
testcase_31 AC 41 ms
54,272 KB
testcase_32 AC 68 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n=int(input())

def bit_cnt(n):
    result=0
    while(n!=0):
        if n%2==1:
            result+=1
        n//=2
    return result

inf=float("inf")

dist=[inf for _ in range(n)]
dist[0]=1

Q=deque()
Q.append(0)

while(Q):
    a=Q.popleft()
    x=bit_cnt(a+1)
    if 0<=a+x<n:
        if dist[a+x]>dist[a]+1:
            dist[a+x]=dist[a]+1
            Q.append(a+x)
    if 0<=a-x<n:
        if dist[a-x]>dist[a]+1:
            dist[a-x]=dist[a]+1
            Q.append(a-x)

ans=dist[n-1]
if ans==inf:
    print(-1)
else:
    print(ans)
0