結果

問題 No.3 ビットすごろく
ユーザー H3PO4H3PO4
提出日時 2023-02-10 17:41:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,001 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 83,508 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 19:55:56
合計ジャッジ時間 2,488 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <bitset>

int main() {
    int N;
    std::cin >> N;

    std::vector<bool> non_visited(N + 1, true);
    const int INF = 10001;
    std::vector<int> cnt(N + 1, INF);
    std::vector<int> next_dist(N + 1);
    for (int i = 1; i < N + 1; i++) {
        std::bitset<32> bs(i);
        next_dist.at(i) = bs.count();
    }
    std::queue<int> q;
    q.push(1);
    non_visited.at(1) = false;
    cnt.at(1) = 1;
    while (!q.empty()) {
        int x = q.front();
        if (x == N) {
            break;
        }
        q.pop();
        for (auto &y: {x + next_dist.at(x), x - next_dist.at(x)}) {
            if (y <= 0 || N < y) {
                continue;
            }
            if (non_visited.at(y)) {
                q.push(y);
                non_visited.at(y) = false;
                cnt.at(y) = cnt.at(x) + 1;
            }
        }
    }
    int ans = (cnt.at(N) != INF) ? cnt.at(N) : -1;
    std::cout << ans << std::endl;
}
0