結果

問題 No.3 ビットすごろく
ユーザー HydruHydru
提出日時 2023-01-15 13:54:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 961 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-06-08 17:06:04
合計ジャッジ時間 2,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,144 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 56 ms
63,104 KB
testcase_04 AC 41 ms
54,400 KB
testcase_05 AC 58 ms
65,792 KB
testcase_06 AC 52 ms
63,360 KB
testcase_07 AC 49 ms
62,720 KB
testcase_08 AC 56 ms
65,664 KB
testcase_09 AC 58 ms
66,304 KB
testcase_10 AC 57 ms
66,432 KB
testcase_11 AC 59 ms
66,176 KB
testcase_12 AC 56 ms
65,792 KB
testcase_13 AC 50 ms
62,848 KB
testcase_14 AC 58 ms
66,048 KB
testcase_15 AC 64 ms
66,688 KB
testcase_16 AC 58 ms
66,944 KB
testcase_17 AC 58 ms
66,944 KB
testcase_18 AC 49 ms
62,720 KB
testcase_19 AC 58 ms
66,944 KB
testcase_20 AC 40 ms
54,272 KB
testcase_21 AC 39 ms
53,632 KB
testcase_22 AC 57 ms
66,304 KB
testcase_23 AC 60 ms
67,200 KB
testcase_24 AC 58 ms
67,200 KB
testcase_25 AC 59 ms
66,816 KB
testcase_26 AC 39 ms
53,632 KB
testcase_27 AC 51 ms
62,976 KB
testcase_28 AC 58 ms
66,944 KB
testcase_29 AC 57 ms
65,920 KB
testcase_30 AC 39 ms
53,632 KB
testcase_31 AC 41 ms
53,760 KB
testcase_32 AC 62 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n=int(input())

def bit_cnt(n):
    #nは64bit未満
    count = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    count = (count & 0x3333333333333333) + ((count >> 2) & 0x3333333333333333)
    count = (count & 0x0f0f0f0f0f0f0f0f) + ((count >> 4) & 0x0f0f0f0f0f0f0f0f)
    count = (count & 0x00ff00ff00ff00ff) + ((count >> 8) & 0x00ff00ff00ff00ff)
    count = (count & 0x0000ffff0000ffff) + ((count >> 16) & 0x0000ffff0000ffff)
    return int((count & 0x00000000ffffffff) + ((count >> 32) & 0x00000000ffffffff))

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