結果

問題 No.3 ビットすごろく
ユーザー ferinferin
提出日時 2017-01-26 21:53:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 997 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 157,868 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 01:03:24
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<int, int> PII;

#define FOR(i, a, n) for (int i = (int)a; i < (int)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
#define MOD 1000000007
#define INF 1000000000
#define PI 3.14159265359
#define EPS 1e-12

int dp[11234], n;
bool use[11234];

void dfs(int num) {
  if(use[num]) return;
  int c = __builtin_popcount(num);
  //cout << "num:" << num << " c:" << c << endl;
  //FOR(i, 1, n+1) cout << dp[i] << " "; cout << endl;
  use[num] = true;
  if(num-c > 0) {
    //cout << "-" << endl;
    if(!use[num-c]) dp[num-c] = dp[num] + 1;
    dfs(num-c);
  }
  if(num+c <= n) {
    //cout << "+" << endl;
    if(!use[num+c]) dp[num+c] = dp[num] + 1;
    dfs(num+c);
  }

  return;
}

int main(void)
{
  cin >> n;
  memset(dp, -1, 11234);

  dp[1] = 1;
  dfs(1);

  cout << dp[n] << endl;
  return 0;
}
0