結果

問題 No.3 ビットすごろく
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-29 10:28:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 983 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-05-05 18:38:00
合計ジャッジ時間 8,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 1,266 ms
10,880 KB
testcase_04 AC 121 ms
10,752 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000)

N=int(input())

#Nのビット数
n_bit=0
tmp=N
while(tmp!=0):
    n_bit+=1
    tmp=int(tmp/2)
# print(n_bit)

#kに到達できる最小の移動数を順に調べていく(ただし-1のとき移動できないとする)
move_num=[-1 for i in range(N+1)]
#境界条件
move_num[0]=0
move_num[1]=1

def Update(k):
    # print(k)
    if move_num[k]==-1:
        return
    #'1'をカウント
    one_num=0
    mask=0b1
    for l in range(n_bit):
        if k&mask!=0:
            one_num+=1
        mask=mask<<1
    #前の更新
    if move_num[k-one_num]==-1 or move_num[k-one_num]>move_num[k]+1:
        move_num[k-one_num]=move_num[k]+1
        Update(k-one_num)
    #後ろの更新
    if k+one_num>N:
        return
    if move_num[k+one_num]>move_num[k]+1 or move_num[k+one_num]==-1:
        move_num[k+one_num]=move_num[k]+1
        Update(k+one_num)

for i in range(1,N+1):
    Update(i)
    # print(i,move_num)
print(move_num[N])
0