結果

問題 No.3 ビットすごろく
ユーザー KuphonyKuphony
提出日時 2016-03-17 00:06:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,185 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 67,100 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 08:49:19
合計ジャッジ時間 9,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 24 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 141 ms
5,248 KB
testcase_10 AC 386 ms
5,248 KB
testcase_11 AC 89 ms
5,248 KB
testcase_12 AC 20 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 333 ms
5,248 KB
testcase_15 AC 879 ms
5,248 KB
testcase_16 AC 526 ms
5,248 KB
testcase_17 AC 780 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1,005 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 340 ms
5,248 KB
testcase_23 AC 1,026 ms
5,248 KB
testcase_24 AC 1,022 ms
5,248 KB
testcase_25 AC 899 ms
5,248 KB
testcase_26 WA -
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 462 ms
5,248 KB
testcase_29 AC 93 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 55 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
using namespace std;
//1の数をカウント
int count1(int x) {
    int count = 0;
    while(x) {
        if (x&1)
            count++;
        x>>=1;
    }
    return count;
}

int main(int argc, const char * argv[]) {
    int n;
    cin >> n;
    queue<int> qu;
    queue<int> tmpqu;
    int init = 1;
    int tmp;
    qu.push(init);
    int count = 1;
    int result;
    bool flag = false;
    bool flag2 = false;
    bool passed[10001];
    for (int i = 0; i < 10001; i++) {
        passed[i] = false;
    }
    
    //探索
    while(!flag){
        //深さを更新
        count++;
        //プラスマイナス両方の方向を調べる
        while(!qu.empty()){
            tmp = qu.front();
            qu.pop();
            //プラス
            //到達した場合はフラグを立てる
            if(tmp + count1(tmp) == n){
                flag2 = true;
                flag = true;
            }
            else if (tmp + count1(tmp) > n){
            }
            else{
                if(!passed[tmp + count1(tmp)]){
                    tmpqu.push(tmp + count1(tmp));
                    //cout << (tmp + count1(tmp));
                    //cout << "\n";
                }
            }
            //マイナス
            if(tmp - count1(tmp) == n){
                flag2 = true;
                flag = true;
            }
            else{
                if(tmp - count1(tmp) > 0){
                    if(!passed[tmp - count1(tmp)]){
                        tmpqu.push(tmp - count1(tmp));
                        //cout << (tmp - count1(tmp));
                        //cout << "\n";
                    }
                }
            }
        }
        //既存のしかない場合
        if(tmpqu.empty()){
            if(!flag2){
                count = -1;
            }
            flag = true;
        }
        //まとめてプッシュ
        while(!tmpqu.empty()){
            tmp = tmpqu.front();
            tmpqu.pop();
            passed[tmp] = true;
            qu.push(tmp);
        }
    }
    cout << count;
    cout << "\n";
}
0