結果

問題 No.3 ビットすごろく
ユーザー syunsukesyunsuke
提出日時 2019-07-06 22:26:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 5,000 ms
コード長 1,032 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 80,160 KB
最終ジャッジ日時 2024-07-01 09:24:50
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,188 KB
testcase_01 AC 44 ms
55,320 KB
testcase_02 AC 45 ms
54,104 KB
testcase_03 AC 126 ms
77,960 KB
testcase_04 AC 101 ms
76,976 KB
testcase_05 AC 169 ms
79,480 KB
testcase_06 AC 132 ms
78,108 KB
testcase_07 AC 118 ms
77,964 KB
testcase_08 AC 157 ms
79,156 KB
testcase_09 AC 184 ms
79,472 KB
testcase_10 AC 193 ms
80,160 KB
testcase_11 AC 184 ms
79,232 KB
testcase_12 AC 168 ms
79,096 KB
testcase_13 AC 125 ms
77,852 KB
testcase_14 AC 193 ms
79,252 KB
testcase_15 AC 198 ms
79,680 KB
testcase_16 AC 197 ms
79,528 KB
testcase_17 AC 200 ms
79,412 KB
testcase_18 AC 119 ms
77,720 KB
testcase_19 AC 200 ms
79,668 KB
testcase_20 AC 75 ms
74,696 KB
testcase_21 AC 43 ms
55,324 KB
testcase_22 AC 191 ms
79,516 KB
testcase_23 AC 200 ms
79,400 KB
testcase_24 AC 199 ms
79,540 KB
testcase_25 AC 198 ms
79,656 KB
testcase_26 AC 44 ms
54,128 KB
testcase_27 AC 125 ms
77,972 KB
testcase_28 AC 193 ms
79,404 KB
testcase_29 AC 179 ms
79,340 KB
testcase_30 AC 51 ms
62,756 KB
testcase_31 AC 53 ms
63,640 KB
testcase_32 AC 183 ms
79,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

L=[10**10 for i in range(N+1)]
L[0]=0
L[1]=1
n=[0 for i in range(N+1)]
n[1]=1
for i in range(2,N+1):
    a=i
    cnt=0
    for j in range(14):
        if a//(2**(13-j))==1:
            cnt+=1
        a%=(2**(13-j))
    n[i]=cnt
#print(n[:10])

import heapq
import copy
#[1からのlength,移動距離,今の場所]
Q=[[2,1,1]]
heapq.heapify(Q)

for i in range(10**7):
    if len(Q)==0:
        break
    else:
        q=copy.deepcopy(Q[0])
        #print(q)
        heapq.heappop(Q)
        if (q[2]+q[1])<=N:
            if L[q[2]+q[1]]>q[0]:
                L[q[2]+q[1]]=q[0]
                heapq.heappush(Q,[q[0]+1,n[q[2]+q[1]],q[2]+q[1]])
                heapq.heappush(Q,[q[0]+1,-n[q[2]+q[1]],q[2]+q[1]])
        if (q[2]-q[1])<=N:
            if L[q[2]-q[1]]>q[0]:
                L[q[2]-q[1]]=q[0]
                heapq.heappush(Q,[q[0]+1,n[q[2]-q[1]],q[2]-q[1]])
                heapq.heappush(Q,[q[0]+1,-n[q[2]-q[1]],q[2]-q[1]])
#print(L[:12])
if L[N]==10**10:
    print(-1)
else:
    print(L[N])
        
0