結果

問題 No.3 ビットすごろく
ユーザー ouoz1Vouoz1V
提出日時 2016-10-30 01:47:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,056 bytes
コンパイル時間 1,284 ms
コンパイル使用メモリ 148,176 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-14 00:10:13
合計ジャッジ時間 2,554 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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