結果

問題 No.3 ビットすごろく
ユーザー szx233
提出日時 2023-04-10 20:40:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 966 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 07:05:47
合計ジャッジ時間 1,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

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