結果

問題 No.3 ビットすごろく
ユーザー kyomachi_yswrkyomachi_yswr
提出日時 2019-06-16 23:35:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 89,264 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 19:38:23
合計ジャッジ時間 1,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
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 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
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 <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>
#include <stack>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;
  
  vector<int> load(N + 1, -1);
  queue<int> q;
  q.push(1);
  load[1] = 1;
  while(!q.empty()) {
    int p = q.front();
    q.pop();
    if (p == N) {
      break;
    }
    bitset<5> b(p);
    int nf = p + (int)b.count();
    if (0 < nf && nf <= N && load[nf] == -1) {
      q.push(nf);
      load[nf] = load[p] + 1;
    }
    
    int nb = p - (int)b.count();
    if (0 < nb && nb <= N && load[nb] == -1) {
      q.push(nb);
      load[nb] = load[p] + 1;
    }
  }
  cout << load[N] << endl;
  return 0;
}
0