結果
問題 | No.3 ビットすごろく |
ユーザー | kaffelun |
提出日時 | 2017-09-27 22:21:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 215 ms / 5,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 1,227 ms |
コンパイル使用メモリ | 159,684 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 08:49:41 |
合計ジャッジ時間 | 3,977 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 8 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 34 ms
6,940 KB |
testcase_10 | AC | 92 ms
6,940 KB |
testcase_11 | AC | 21 ms
6,940 KB |
testcase_12 | AC | 6 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 73 ms
6,944 KB |
testcase_15 | AC | 191 ms
6,940 KB |
testcase_16 | AC | 120 ms
6,940 KB |
testcase_17 | AC | 174 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 215 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 78 ms
6,940 KB |
testcase_23 | AC | 215 ms
6,944 KB |
testcase_24 | AC | 215 ms
6,940 KB |
testcase_25 | AC | 191 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 111 ms
6,940 KB |
testcase_29 | AC | 22 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,944 KB |
testcase_32 | AC | 14 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define INF 2000000000 int BitCount(int64_t x) { x = (x & 0x5555555555555555) + (x >> 1 & 0x5555555555555555); x = (x & 0x3333333333333333) + (x >> 2 & 0x3333333333333333); x = (x & 0x0f0f0f0f0f0f0f0f) + (x >> 4 & 0x0f0f0f0f0f0f0f0f); x = (x & 0x00ff00ff00ff00ff) + (x >> 8 & 0x00ff00ff00ff00ff); x = (x & 0x0000ffff0000ffff) + (x >> 16 & 0x0000ffff0000ffff); x = (x & 0x00000000ffffffff) + (x >> 32 & 0x00000000ffffffff); return (int)(x); } int N; int x[10000]; void recursive(int pos, int t) { if(pos < 0 || pos > N) return; if(x[pos] < t) return; else x[pos] = t; int d = BitCount(pos + 1); recursive(pos + d, t + 1); recursive(pos - d, t + 1); } int main() { cin >> N; for(int i = 0; i < N; i++) { x[i] = INF; } recursive(0, 0); if(x[N - 1] == INF) x[N - 1] = -2; cout << x[N - 1] + 1 << endl; return 0; }