結果
問題 | No.3 ビットすごろく |
ユーザー | achapi |
提出日時 | 2023-04-23 21:06:09 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 527 bytes |
コンパイル時間 | 2,395 ms |
コンパイル使用メモリ | 207,732 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 02:50:30 |
合計ジャッジ時間 | 3,392 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main() { int n; cin >> n; Graph g(n + 1); for (int i = 1; i < n; i++){ int c = __builtin_popcount(i); if (i + c <= n){ g[i].push_back(i + c); } if (0 <= i - c){ g[i].push_back(i - c); } } vector<int> d(n + 1, -1); d[1] = 1; queue<int> q; q.push(1); while (!q.empty()){ int v = q.front(); q.pop(); for (int i : g[v]){ if (d[i] == -1){ d[i] = d[v] + 1; q.push(i); } } } cout << d[n] << endl; }