結果

問題 No.3 ビットすごろく
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-15 22:42:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-07-01 09:55:43
合計ジャッジ時間 3,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 55 ms
64,384 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 60 ms
68,096 KB
testcase_06 AC 55 ms
64,512 KB
testcase_07 AC 52 ms
63,232 KB
testcase_08 AC 65 ms
67,840 KB
testcase_09 AC 64 ms
69,632 KB
testcase_10 AC 64 ms
69,760 KB
testcase_11 AC 63 ms
68,352 KB
testcase_12 AC 61 ms
68,096 KB
testcase_13 AC 55 ms
64,000 KB
testcase_14 AC 72 ms
70,016 KB
testcase_15 AC 65 ms
70,912 KB
testcase_16 AC 63 ms
70,656 KB
testcase_17 AC 64 ms
70,784 KB
testcase_18 AC 53 ms
63,744 KB
testcase_19 AC 65 ms
70,784 KB
testcase_20 AC 44 ms
54,656 KB
testcase_21 AC 44 ms
53,504 KB
testcase_22 AC 64 ms
70,016 KB
testcase_23 AC 63 ms
71,040 KB
testcase_24 AC 63 ms
71,296 KB
testcase_25 AC 63 ms
70,912 KB
testcase_26 AC 43 ms
53,760 KB
testcase_27 AC 55 ms
63,872 KB
testcase_28 AC 64 ms
70,528 KB
testcase_29 AC 62 ms
68,736 KB
testcase_30 AC 44 ms
54,016 KB
testcase_31 AC 43 ms
54,144 KB
testcase_32 AC 62 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
reach = [float("Inf")]*(n+1)
reach[1] = 1
q = deque([])
q.append(1)

while q:
    x = q.popleft()
    c = bin(x).count("1")
    if 1 <= x-c and reach[x-c] > reach[x] + 1:
        q.append(x-c)
        reach[x-c] = reach[x] + 1
    if x+c <= n and reach[x+c] > reach[x] + 1:
        q.append(x+c)
        reach[x+c] = reach[x] + 1
if reach[-1] >= 10**18:
    print(-1)
else:
    print(reach[-1])
0