結果

問題 No.3 ビットすごろく
ユーザー ouoz1Vouoz1V
提出日時 2016-10-30 01:45:54
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 163,908 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 19:42:15
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,948 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,940 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;
    }
    cout<<mp[N]+1<<endl;

    return 0;
}
0