結果

問題 No.3 ビットすごろく
ユーザー yoshi_kyoshi_k
提出日時 2017-09-23 04:39:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,942 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 101,212 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-14 00:49:38
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cctype>
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <string>
#include <sstream>
#include <vector>
#include <map>
#include <set>
#include <bitset>
#include <deque>
#include <complex>
#include <functional>
#include <utility>
#include <iterator>

#define REP(i, n) for(int i = 0; i < (int)(n); ++i)
#define FOR(i, m, n) for(int i = (m); i < (int)(n); ++i)
#define ALL(x) (x).begin(), (x).end()
#define INF 2000000000

#ifdef LOCAL
  #define eprintf(...) fprintf(stdout, __VA_ARGS__)
#else
  #define eprintf(...) 0
#endif

using namespace std;

typedef long long LL;
typedef unsigned long long ULL;
typedef unsigned int uint;

int popcount(int n) {
  bitset<sizeof(int) * 8> b(n); 
  return b.count();
}

int main() {
  int n;
  cin >> n;
  vector<bool> visited(n+1, false);
  deque<int> q;
  q.push_back(1);

  bool cangoal = false;
  vector<int> counts(n + 1, INF);
  counts[1] = 1;
  if(n == 1) {
    cangoal = true;
    q.clear();
  }
  while(!q.empty()) {
    int cur = q.front();
    q.pop_front();
    int pc = popcount(cur);
    eprintf("cur:%d count:%d pc:%d\n", cur, counts[cur], pc);
    if(cur + pc == n) {
      eprintf("found! cur:%d goto:%d\n", cur, cur+pc);
      cangoal = true;
      counts[cur + pc] = counts[cur] + 1;
      break;
    }
    int back = cur - pc;
    int forward = cur + pc;
    eprintf("back:%d forward:%d n:%d\n", back, forward, n);
    if(back >= 1 && !visited[back]) {
      eprintf("cur:%d goto:%d\n", cur, back);
      q.push_back(back);
      visited[back] = true;
      counts[back] = counts[cur] + 1;
    }
    if(forward <= n && !visited[forward]) {
      eprintf("cur:%d goto:%d\n", cur, forward);
      q.push_back(forward);
      visited[forward] = true;
      counts[forward] = counts[cur] + 1;
    }
  }

  if(cangoal) {
    cout << counts[n] << endl;
  }
  else {
    cout << -1 << endl;
  }
  return 0;
}
0