結果
| 問題 | No.3 ビットすごろく | 
| コンテスト | |
| ユーザー |  kyomachi_yswr | 
| 提出日時 | 2019-04-21 13:58:10 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 1,024 bytes | 
| コンパイル時間 | 756 ms | 
| コンパイル使用メモリ | 90,584 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-01 09:18:32 | 
| 合計ジャッジ時間 | 1,743 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 33 | 
ソースコード
#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;
}
            
            
            
        