結果

問題 No.3 ビットすごろく
ユーザー ouoz1V
提出日時 2016-10-30 01:47:49
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,056 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 163,832 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 08:08:01
合計ジャッジ時間 2,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int mp[10001];
int dis[10001];

void cul_dis(){
    for(int i=1; i<10001; i++){
        int n=i;
        while(true){
            if(n==1){
                dis[i]++;
                break;
            }
            dis[i]+=n%2;
            n=n/2;
        }
    }
}

int main(){
    int N;
    queue<int> q;

    fill(mp+3,mp+10001,1000000);
    mp[1]=0;
    mp[2]=1;
    cin>>N;
    cul_dis();
    q.push(2);
    while(!q.empty()){
        if(q.front()+dis[q.front()]<=N&&mp[q.front()+dis[q.front()]]==1000000){
            mp[q.front()+dis[q.front()]]=mp[q.front()]+1;
            q.push(q.front()+dis[q.front()]);
        }
        if(q.front()-dis[q.front()]>1){
            if(mp[q.front()-dis[q.front()]]==1000000){
                mp[q.front()-dis[q.front()]]=mp[q.front()]+1;
                q.push(q.front()-dis[q.front()]);
            }
        }
        q.pop();
        //cout<<q.front()<<endl;
    }

    if(mp[N]==1000000){
        cout<<-1<<endl;
    }else cout<<mp[N]+1<<endl;

    return 0;
}
0