結果

問題 No.3 ビットすごろく
ユーザー LunaLuna
提出日時 2018-06-09 14:38:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 1,211 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 69,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 09:02:04
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 22 ms
6,944 KB
testcase_10 AC 30 ms
6,944 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 13 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 28 ms
6,940 KB
testcase_15 AC 43 ms
6,940 KB
testcase_16 AC 37 ms
6,944 KB
testcase_17 AC 41 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 43 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 29 ms
6,944 KB
testcase_23 AC 42 ms
6,940 KB
testcase_24 AC 43 ms
6,944 KB
testcase_25 AC 43 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 35 ms
6,944 KB
testcase_29 AC 19 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 16 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
#include <queue>

using namespace std;

int count(int n) {
    int cnt = 0;
    while (n > 0) {
        if (n % 2 == 1) cnt++;
        n = n / 2;
    }
    return cnt;
}

bool in(vector<int> v, int n) {
    for (auto var : v) {
        if (var == n) return true;
    }
    return false;
}

int solve(int n) {
    queue<pair<int, int>> q;
    q.push(make_pair(1, 1));
    vector<int> v;
    v.push_back(1);
    while (!q.empty()) {
        pair<int, int> tmp = q.front();
        int num = tmp.first;
        int cnt = tmp.second;
        q.pop();
        if (num == n) return cnt;
        int forward  = num + count(num);
        int backward = num - count(num);
        if (forward <= n) {
            if (!in(v, forward)) {
                q.push(make_pair(forward, cnt+1));
                v.push_back(forward);
            }
        }
        if (backward > 0) {
            if (!in(v, backward)) {
                q.push(make_pair(backward, cnt+1));
                v.push_back(backward);
            }
        }
    }
    return -1;
}

int main(int argc, char const* argv[]) {
    int n;
    cin >> n;
    cout << solve(n) << endl;
    return 0;
}
0