結果

問題 No.3 ビットすごろく
ユーザー htkbhtkb
提出日時 2019-02-09 12:33:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 480 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-01 18:41:09
合計ジャッジ時間 64,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 325 ms
10,752 KB
testcase_04 AC 54 ms
10,624 KB
testcase_05 AC 1,434 ms
11,392 KB
testcase_06 AC 385 ms
11,008 KB
testcase_07 AC 146 ms
10,624 KB
testcase_08 AC 915 ms
10,880 KB
testcase_09 AC 2,422 ms
11,392 KB
testcase_10 AC 3,486 ms
11,648 KB
testcase_11 AC 2,031 ms
11,520 KB
testcase_12 AC 1,370 ms
11,264 KB
testcase_13 AC 230 ms
10,880 KB
testcase_14 AC 3,262 ms
11,648 KB
testcase_15 TLE -
testcase_16 AC 4,348 ms
11,904 KB
testcase_17 AC 4,919 ms
11,776 KB
testcase_18 AC 181 ms
10,752 KB
testcase_19 TLE -
testcase_20 AC 41 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 3,338 ms
11,648 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 30 ms
10,496 KB
testcase_27 AC 272 ms
10,752 KB
testcase_28 AC 4,169 ms
11,904 KB
testcase_29 AC 2,080 ms
11,392 KB
testcase_30 AC 30 ms
10,496 KB
testcase_31 AC 31 ms
10,496 KB
testcase_32 AC 1,783 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N = int(input())
a = list((bin(i).count("1") for i in range(N+1)))
inf = float("inf")
dp = [inf, 1] + [inf]*(N+100)


def dfs(i, steps):
    if i == N:
        return
    back, forward = i-a[i], i+a[i]
    steps += 1
    if dp[back] > steps:
        dp[back] = steps
        dfs(back, steps)
    if N >= forward and dp[forward] > steps:
        dp[forward] = steps
        dfs(forward, steps)


dfs(1, 1)
print(dp[N] if dp[N] < inf else -1)
0