結果

問題 No.3 ビットすごろく
ユーザー ouoz1V
提出日時 2016-10-30 01:45:54
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 1,212 ms
コンパイル使用メモリ 164,476 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-24 23:28:09
合計ジャッジ時間 2,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 10
権限があれば一括ダウンロードができます

ソースコード

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;
    }
    cout<<mp[N]+1<<endl;

    return 0;
}
0