結果

問題 No.3 ビットすごろく
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-29 10:46:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,072 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-05-05 18:43:30
合計ジャッジ時間 30,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 433 ms
11,008 KB
testcase_04 AC 65 ms
10,624 KB
testcase_05 AC 2,149 ms
11,264 KB
testcase_06 AC 545 ms
10,880 KB
testcase_07 AC 197 ms
10,880 KB
testcase_08 AC 1,325 ms
11,008 KB
testcase_09 AC 3,465 ms
11,264 KB
testcase_10 AC 4,965 ms
11,520 KB
testcase_11 AC 2,937 ms
11,392 KB
testcase_12 AC 1,964 ms
11,392 KB
testcase_13 AC 312 ms
11,008 KB
testcase_14 AC 4,780 ms
11,520 KB
testcase_15 TLE -
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)

#'1'をカウント
one_num_list=[0 for i in range(N+1)]
for i in range(N+1):
    mask=0b1
    one_sum=0
    for l in range(n_bit):
        if i&mask!=0:
            one_sum+=1
        mask=mask<<1
    one_num_list[i]=one_sum

#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
    one_num=one_num_list[k]
    #前の更新
    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)

Update(1)
# print(move_num)
print(move_num[N])
0