結果

問題 No.3 ビットすごろく
コンテスト
ユーザー kyomachi_yswr
提出日時 2019-04-21 13:58:10
言語 C++11
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 5,000 ms
+ 413µs
コード長 1,024 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 556 ms
コンパイル使用メモリ 111,828 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-03 04:49:40
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <set>
#include <map>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <climits>
#include <numeric>
#include <cmath>
#include <queue>
#include <sstream>
#include <string.h>
#include <bitset>

using namespace std;
typedef long long ll;

int main()
{
  int n;
  cin >> n;
  
  vector<bool> load(n, false);
  queue<pair<int, int>> q;
  q.push({1, 1});
  load[1] = true;
  
  
  while(!q.empty()) {
    pair<int, int> v = q.front();
    q.pop();
    
    if (n == v.first) {
      cout << v.second << endl;
      return 0;
    }
    
    bitset<20> bs(v.first);
    int next_plus = v.first + (int)bs.count();
    if (!load[next_plus] && 1 < next_plus && next_plus <= n) {
      q.push({next_plus, v.second + 1});
      load[next_plus] = true;
    }
    int next_minus = v.first - (int)bs.count();
    if (!load[next_minus] && 1 < next_minus && next_minus <= n) {
      q.push({next_minus, v.second + 1});
      load[next_minus] = true;
    }
  }
  cout << -1 << endl;
  return 0;
}
0