結果
問題 | No.3 ビットすごろく |
ユーザー | siguma323 |
提出日時 | 2016-05-05 12:42:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,513 bytes |
コンパイル時間 | 652 ms |
コンパイル使用メモリ | 78,380 KB |
実行使用メモリ | 394,240 KB |
最終ジャッジ日時 | 2024-10-05 09:31:30 |
合計ジャッジ時間 | 5,099 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 16 ms
24,832 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 79 ms
112,512 KB |
testcase_06 | AC | 19 ms
29,952 KB |
testcase_07 | AC | 7 ms
12,032 KB |
testcase_08 | AC | 48 ms
71,552 KB |
testcase_09 | AC | 132 ms
188,800 KB |
testcase_10 | AC | 188 ms
266,112 KB |
testcase_11 | AC | 108 ms
157,568 KB |
testcase_12 | AC | 72 ms
106,496 KB |
testcase_13 | AC | 11 ms
18,560 KB |
testcase_14 | AC | 173 ms
249,472 KB |
testcase_15 | AC | 275 ms
384,512 KB |
testcase_16 | AC | 230 ms
331,904 KB |
testcase_17 | AC | 255 ms
373,376 KB |
testcase_18 | AC | 9 ms
14,336 KB |
testcase_19 | AC | 278 ms
394,240 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 176 ms
255,616 KB |
testcase_23 | AC | 275 ms
393,856 KB |
testcase_24 | AC | 271 ms
394,112 KB |
testcase_25 | AC | 268 ms
384,896 KB |
testcase_26 | WA | - |
testcase_27 | AC | 14 ms
21,504 KB |
testcase_28 | AC | 219 ms
317,440 KB |
testcase_29 | AC | 119 ms
162,944 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 100 ms
139,136 KB |
ソースコード
#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 << 0 << 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; }