結果

問題 No.3 ビットすごろく
ユーザー HydruHydru
提出日時 2023-01-15 13:24:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-08 16:38:16
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 40 ms
53,248 KB
testcase_03 AC 64 ms
66,432 KB
testcase_04 AC 49 ms
60,288 KB
testcase_05 AC 72 ms
71,552 KB
testcase_06 AC 60 ms
66,688 KB
testcase_07 AC 52 ms
64,000 KB
testcase_08 AC 69 ms
69,760 KB
testcase_09 AC 81 ms
76,800 KB
testcase_10 AC 81 ms
76,672 KB
testcase_11 AC 74 ms
74,368 KB
testcase_12 AC 73 ms
71,680 KB
testcase_13 AC 61 ms
65,664 KB
testcase_14 AC 80 ms
76,800 KB
testcase_15 AC 80 ms
76,800 KB
testcase_16 AC 87 ms
76,672 KB
testcase_17 AC 84 ms
76,544 KB
testcase_18 AC 53 ms
64,512 KB
testcase_19 AC 80 ms
76,928 KB
testcase_20 AC 45 ms
59,776 KB
testcase_21 AC 38 ms
53,888 KB
testcase_22 AC 79 ms
76,672 KB
testcase_23 AC 83 ms
76,672 KB
testcase_24 AC 81 ms
76,800 KB
testcase_25 AC 81 ms
76,672 KB
testcase_26 WA -
testcase_27 AC 58 ms
66,432 KB
testcase_28 AC 79 ms
76,800 KB
testcase_29 AC 75 ms
74,880 KB
testcase_30 AC 40 ms
53,632 KB
testcase_31 AC 38 ms
53,760 KB
testcase_32 AC 71 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n=int(input())
if n==1:
    print(0)
    exit()

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