結果
問題 | No.3 ビットすごろく |
ユーザー | toshiki_full |
提出日時 | 2019-01-08 00:34:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 1,323 ms |
コンパイル使用メモリ | 162,656 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-03 03:37:06 |
合計ジャッジ時間 | 2,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; queue<int> que; vector<int> dst(n + 1, -1); que.push(1); dst[1] = 1; int crr = 1; int nxt; while(!que.empty()) { que.pop(); int dif = bitset<32> (crr).count(); nxt = crr + dif; if (nxt <= n && dst[nxt] == -1) { que.push(nxt); dst[nxt] = dst[crr] + 1; } nxt = crr - dif; if (0 < nxt && dst[nxt] == -1) { que.push(nxt); dst[nxt] = dst[crr] + 1; } } cout << dst[n] << '\n'; return 0; }