結果

問題 No.3 ビットすごろく
ユーザー ermineermine
提出日時 2023-01-26 22:08:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 494 ms / 5,000 ms
コード長 802 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 214,572 KB
実行使用メモリ 394,860 KB
最終ジャッジ日時 2024-06-27 13:03:52
合計ジャッジ時間 9,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 29 ms
25,088 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 138 ms
113,024 KB
testcase_06 AC 36 ms
30,336 KB
testcase_07 AC 13 ms
12,288 KB
testcase_08 AC 88 ms
72,064 KB
testcase_09 AC 234 ms
189,184 KB
testcase_10 AC 332 ms
266,880 KB
testcase_11 AC 196 ms
158,208 KB
testcase_12 AC 131 ms
106,880 KB
testcase_13 AC 21 ms
19,072 KB
testcase_14 AC 313 ms
249,984 KB
testcase_15 AC 481 ms
385,224 KB
testcase_16 AC 412 ms
332,544 KB
testcase_17 AC 469 ms
374,112 KB
testcase_18 AC 16 ms
14,848 KB
testcase_19 AC 492 ms
394,860 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 317 ms
256,108 KB
testcase_23 AC 494 ms
394,496 KB
testcase_24 AC 493 ms
394,824 KB
testcase_25 AC 481 ms
385,660 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 24 ms
21,888 KB
testcase_28 AC 395 ms
317,952 KB
testcase_29 AC 201 ms
163,456 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 191 ms
139,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin>>n;
    vector<vector<int>> dp(n+1, vector<int>(n+1));
    dp[0][1] = 1;

    map<int,int> bits;
    for(int i=1; i<=n; i++){
        bitset<32> bs(i);
        bits[i] = bs.count();
    }

    vector<int> ans(n+1,-1);
    ans[1]=1;

    dp[0][1]=1;
    for(int i=1; i<=n; i++){

        for(int j=1; j<n; j++){
            if(!dp[i-1][j]) continue;

            if(bits[j]<j && ans[j-bits[j]] == -1){
                dp[i][j-bits[j]] = dp[i-1][j] + 1;
                ans[j-bits[j]] = i+1;
            }
            if(j+bits[j]<=n && ans[j+bits[j]] == -1){
                dp[i][j+bits[j]] = dp[i-1][j] + 1;
                ans[j+bits[j]] = i+1;
            }

        }
    }

    cout << ans[n] << endl;
    return 0;
}
0