結果

問題 No.3 ビットすごろく
ユーザー a01sa01to
提出日時 2024-02-29 00:03:34
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 2,803 ms
コンパイル使用メモリ 249,724 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-29 12:27:04
合計ジャッジ時間 3,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int n;
  cin >> n;
  constexpr int INF = 1e9;
  vector<int> dist(n, INF);
  dist[0] = 1;
  queue<int> q;
  q.push(0);
  while (!q.empty()) {
    int v = q.front();
    q.pop();
    int pp = popcount(ull(v + 1));
    for (auto next_v : { v + pp, v - pp }) {
      if (next_v < 0 || next_v >= n) continue;
      if (dist[next_v] != INF) continue;
      dist[next_v] = dist[v] + 1;
      q.push(next_v);
    }
  }
  cout << (dist[n - 1] == INF ? -1 : dist[n - 1]) << endl;
  return 0;
}
0