結果
問題 | No.3 ビットすごろく |
ユーザー | kongroo |
提出日時 | 2018-01-06 14:35:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 1,612 ms |
コンパイル使用メモリ | 158,332 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-23 08:34:42 |
合計ジャッジ時間 | 2,956 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 5 ms
7,296 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 6 ms
7,168 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 7 ms
9,088 KB |
testcase_15 | AC | 8 ms
10,240 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 7 ms
9,216 KB |
testcase_23 | AC | 9 ms
10,496 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define FI(i,a,b) for(int i=(a);i<=(b);i++) #define FD(i,b,a) for(int i=(b);i>=(a);i--) #define len(a) int((a).size()) using namespace std; using LL = long long; using PII = pair<int, int>; const int N = 10005; int F[N]; int dfs(int x, int target, bitset<N> b) { if (F[x] != -1) return F[x]; if (x == target) return F[x] = 0; b.set(x); int t = __builtin_popcount(x); int ans = 1 << 30; if (x > t && !b.test(x-t)) { ans = 1 + dfs(x-t, target, b); } if (x + t <= target && !b.test(x+t)) { ans = min(ans, 1 + dfs(x+t, target, b)); } return F[x] = ans; } int main() { int n; scanf("%d", &n); memset(F, -1, sizeof F); bitset<N> b(0); int ans = dfs(1, n, b) + 1; if (ans >= 1 << 30) ans = -1; printf("%d\n", ans); }