結果

問題 No.3 ビットすごろく
ユーザー szx233szx233
提出日時 2023-04-10 20:40:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 966 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-15 23:45:45
合計ジャッジ時間 1,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstring>
#include<queue>
using namespace std;
typedef long long ll;
const int N = 1e4 + 10;
bool v[N];
int m[N];
int n;

int fun(int x)
{
    int ans = 0;
    while(x)
    {
        if(x & 1) ans ++ ;
        x >>= 1;
    }
    return ans;
}

void bfs()
{
    queue<int> q;
    q.push(1);
    memset(m, 0x3f, sizeof m);
    m[1] = 1;

    while(q.size())
    {
        int t = q.front();
        q.pop();
        if(v[t]) continue;
        v[t] = true;
        int d = fun(t);
        if(t - d >= 1 && t - d <= n && !v[t - d])
        {
            m[t - d] = min(m[t] + 1, m[t - d]);
            q.push(t - d);
        }

        if(t + d >= 1 && t + d <= n && !v[t + d])
        {
            m[t + d] = min(m[t] + 1, m[t + d]);
            q.push(t + d);
        }
    }

    if(v[n]) cout << m[n];
    else cout << -1;
}

int main()
{
    cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
    cin >> n;
    bfs();

    return 0;
}
0