結果
問題 | No.3 ビットすごろく |
ユーザー | @abcde |
提出日時 | 2019-03-03 17:24:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,812 bytes |
コンパイル時間 | 1,295 ms |
コンパイル使用メモリ | 163,188 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 13:16:00 |
合計ジャッジ時間 | 2,261 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; // 訪問済みか否かを設定. bool isVisited[10001]; // 地点1からの経路数を保存. int route[10001]; // ビットを数える・探すアルゴリズム. // http://www.nminoru.jp/~nminoru/programming/bitcount.html int countBits(int bits){ int num; num = (bits >> 1) & 03333333333; num = bits - num - ((num >> 1) & 03333333333); num = ((num + (num >> 3)) & 0707070707) % 077; return num; } // 経路情報更新. // 幅優先探索. // https://ja.wikipedia.org/wiki/幅優先探索 // @param vCur: 現在地点. // @param vMax: 探索可能な頂点の最大値. // @return: 特に無し. void bfs(int vCur, int vMax){ // 1. queue の 設定. queue<int> Q; Q.push(vCur); isVisited[vCur] = true; // 現在地点 vCur を 訪問済みに設定. // 2. queue が 空になるまで, 探索. while(!Q.empty()){ // 2-1. Q から 取り出す. int u = Q.front(); Q.pop(); // 2-2. 探索地点 u の 1のビット数をカウント. int bit = countBits(u); // cout << "u=" << u << " route[" << u << "]=" << route[u] << " isVisited[" << u << "]=" << isVisited[u] << endl; // 2-3. 探索地点 u に, 接続している頂点について確認. // -> wiki の 疑似コード上 "for each v に接続している頂点 i do" を 読み替えしている. // ① +bit個 右(indexを増やす方向) の 頂点 vr に移動する場合. int vr = u + bit; if(vr <= vMax && route[vr] == -1 && isVisited[vr] == false){ route[vr] = route[u] + 1; // cout << " vr=" << vr << " route[" << vr << "]=" << route[vr] << endl; isVisited[vr] = true; // 訪問済みをマーク. Q.push(vr); // vr を Q に追加 } // ② -bit個 左(indexを減らす方向) の 頂点 vl に移動する場合. int vl = u - bit; if(vl >= 0 && route[vl] == -1 && isVisited[vl] == false){ route[vl] = route[u] + 1; // cout << " vl=" << vl << " route[" << vl << "]=" << route[vl] << endl; // isVisited[vl] = true; // 訪問済みのマークは行わない. Q.push(vl); // vl を Q に追加 } } } int main() { // 1. 入力情報取得. int N; cin >> N; // 2. 経路を確認していく. for(int i = 0; i < 10001; i++) route[i] = -1, isVisited[i] = false; if(N > 1) route[1] = 1; // system_test2.txt の WA回避用(N = 1 ならば 経路数 0 を設定). if(N == 1) route[1] = 0; // N = 10000 -> 経路数: 1610 らしい. bfs(1, N); // 3. 後処理. int ans = route[N]; cout << ans << endl; return 0; }