結果

問題 No.3 ビットすごろく
ユーザー tachyon777tachyon777
提出日時 2020-02-13 13:33:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 775 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 79,756 KB
最終ジャッジ日時 2024-07-01 09:40:45
合計ジャッジ時間 6,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
79,500 KB
testcase_01 AC 107 ms
79,372 KB
testcase_02 AC 106 ms
79,372 KB
testcase_03 AC 131 ms
79,500 KB
testcase_04 AC 112 ms
79,756 KB
testcase_05 AC 157 ms
79,376 KB
testcase_06 AC 133 ms
79,360 KB
testcase_07 AC 123 ms
79,244 KB
testcase_08 AC 147 ms
79,436 KB
testcase_09 AC 168 ms
79,372 KB
testcase_10 AC 181 ms
79,376 KB
testcase_11 AC 167 ms
79,500 KB
testcase_12 AC 158 ms
79,372 KB
testcase_13 AC 127 ms
79,496 KB
testcase_14 AC 181 ms
79,500 KB
testcase_15 AC 190 ms
79,380 KB
testcase_16 AC 186 ms
79,500 KB
testcase_17 AC 188 ms
79,248 KB
testcase_18 AC 123 ms
79,700 KB
testcase_19 AC 190 ms
79,756 KB
testcase_20 AC 108 ms
79,244 KB
testcase_21 AC 109 ms
79,372 KB
testcase_22 AC 182 ms
79,376 KB
testcase_23 AC 194 ms
79,372 KB
testcase_24 AC 190 ms
79,756 KB
testcase_25 AC 191 ms
79,372 KB
testcase_26 AC 108 ms
79,252 KB
testcase_27 AC 131 ms
79,248 KB
testcase_28 AC 188 ms
79,244 KB
testcase_29 AC 173 ms
79,244 KB
testcase_30 AC 107 ms
79,372 KB
testcase_31 AC 111 ms
79,376 KB
testcase_32 AC 162 ms
79,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())

lst1 = []
for i in range(1,100001):
    dig = len(bin(i))-2
    res = 0
    for j in range(dig):
        if i >> j & 1:
            res += 1
    lst1.append(res)

visited = [0]*n
visited[0] = 1
queue = [(1,0)] #res,now
ans = -1

heapq.heapify(queue)

while queue:
    res,now = heapq.heappop(queue)
    if now == n-1: #最小から取り出してるので、初めに行き着いたやつが答え
        ans = res
        break
    if 0 <= now-lst1[now] and visited[now-lst1[now]] == 0:
        visited[now-lst1[now]] = 1
        heapq.heappush(queue,(res+1,now-lst1[now]))
    if now+lst1[now] < n and visited[now+lst1[now]] == 0:
        visited[now+lst1[now]] = 1
        heapq.heappush(queue,(res+1,now+lst1[now]))

print(ans)
    
    
0