結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 39 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 61 ms
11,136 KB
testcase_06 AC 40 ms
10,880 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
11,136 KB
testcase_13 AC 35 ms
11,008 KB
testcase_14 AC 85 ms
11,264 KB
testcase_15 AC 97 ms
11,136 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 31 ms
10,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 26 ms
10,880 KB
testcase_22 AC 84 ms
11,136 KB
testcase_23 AC 101 ms
11,264 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 25 ms
11,008 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 27 ms
10,880 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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
if N==1:
    print(1)
    exit()

#深さ優先探索
stack=[]
stack.append(1)
ans=-1
while(1):
    if len(stack)==0:
        ans=-1
        break
    # print(stack)
    k=stack.pop()
    one_num=one_num_list[k]
    if k+one_num==N:
        ans=move_num[k]+1
        break
    #前の更新
    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
        stack.append(k-one_num)
    #後ろの更新
    if k+one_num>N:
        continue
    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
        stack.append(k+one_num)

print(ans)
0