結果

問題 No.3 ビットすごろく
ユーザー rlangevinrlangevin
提出日時 2023-01-08 01:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 70,756 KB
最終ジャッジ日時 2024-12-15 03:20:50
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n //= 2
    return cnt

N = int(input())
dist = [-1] * (N + 1)
dist[1] = 1
Q = deque([1])
while Q:
    n = Q.popleft()
    d = popcount(n)
    for i in range(-1, 2, 2):
        if 1 <= n - i * d <= N:
            if dist[n - i * d] != -1:
                continue
            dist[n - i * d] = dist[n] + 1
            Q.append(n - i * d)
print(dist[N])
0