結果

問題 No.3 ビットすごろく
ユーザー jamadjamad
提出日時 2017-08-13 04:56:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-01 08:47:32
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

def upd(x,t):
    if 0<x<=N and A[x]==0:
        Q.append(x)
        A[x]=A[t]+1
    
def bfs():
    while Q:
        t=Q.pop(0)
        if t==N:return A[N]
        c=bin(t)[2:].count('1')
        upd(t+c,t)
        upd(t-c,t)
    return -1

N=int(input())
A=[0]*10001
A[1]=1
Q=[1]
print(bfs())
0