結果

問題 No.3 ビットすごろく
ユーザー siguma323siguma323
提出日時 2016-05-05 12:43:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 306 ms / 5,000 ms
コード長 1,513 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 394,368 KB
最終ジャッジ日時 2024-07-01 07:51:20
合計ジャッジ時間 5,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 19 ms
24,704 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 88 ms
112,512 KB
testcase_06 AC 23 ms
29,824 KB
testcase_07 AC 8 ms
11,904 KB
testcase_08 AC 56 ms
71,680 KB
testcase_09 AC 147 ms
188,672 KB
testcase_10 AC 204 ms
266,240 KB
testcase_11 AC 123 ms
157,568 KB
testcase_12 AC 83 ms
106,496 KB
testcase_13 AC 13 ms
18,560 KB
testcase_14 AC 192 ms
249,472 KB
testcase_15 AC 297 ms
384,640 KB
testcase_16 AC 255 ms
331,904 KB
testcase_17 AC 285 ms
373,504 KB
testcase_18 AC 10 ms
14,336 KB
testcase_19 AC 305 ms
394,368 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,948 KB
testcase_22 AC 195 ms
255,488 KB
testcase_23 AC 306 ms
393,984 KB
testcase_24 AC 303 ms
394,112 KB
testcase_25 AC 293 ms
384,896 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 15 ms
21,504 KB
testcase_28 AC 243 ms
317,440 KB
testcase_29 AC 126 ms
162,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 108 ms
139,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <numeric>
#include <string>
#include <vector>
#include <iostream>
#include <queue>
#include <utility>
#include <cmath>
#include <bitset>

using namespace std;

int now_bit(int num)
{
    bitset<1000> bs(num);
    return bs.count();
}

bool InBounds(int pos,int n)
{
    if(pos > 0 && pos <= n)
        return true;
    else
        return false;
}

int main()
{
    int n;
    cin >> n;

    if(n == 1)
    {
        cout << 1 << endl;
        return 0;
    }

    vector<vector<int>> used(n+1,vector<int>(n+1));
    queue<pair<int,int>> q;
    q.push(make_pair(1 + now_bit(1),1));
    used.at(1).at(1+now_bit(1)) = 1;

    while(!q.empty())
    {
        pair<int,int> index = q.front();
        q.pop();

        if(index.first == n)
        {
            cout << index.second + 1 << endl;
            return 0;
        }

        if(InBounds(index.first + now_bit(index.first),n) && !used.at(index.first).at(index.first + now_bit(index.first)))
        {
            q.push(make_pair(index.first + now_bit(index.first),index.second + 1));
            used.at(index.first).at(index.first + now_bit(index.first)) = 1;
        }

        if(InBounds(index.first - now_bit(index.first),n)  && !used.at(index.first).at(index.first - now_bit(index.first)))
        {
            q.push(make_pair(index.first - now_bit(index.first),index.second + 1));
            used.at(index.first).at(index.first - now_bit(index.first)) = 1;
        }
    }

    cout << -1 << endl;
    return 0;

}
0