結果
問題 | No.1444 !Andd |
ユーザー | iaNTU |
提出日時 | 2021-01-22 15:00:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,022 bytes |
コンパイル時間 | 2,554 ms |
コンパイル使用メモリ | 205,360 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 21:30:02 |
合計ジャッジ時間 | 6,425 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
// Compile flags -Wall -Wextra -Wshadow -D_GLIBCXX_ASSERTIONS -DDEBUG -ggdb3 -fmax-errors=2 #include <bits/stdc++.h> using namespace std; constexpr int kN = int(5E3 + 10); constexpr int kC = 1 << 10; int a[kN], cnt[kN]; bitset<kC> dp[kN], now; int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); now[0] = true; cnt[0] = 1; for (int i = 1; i <= n; i++) { //for (int j = 0; j < kC; j++) if (dp[i - 1][j]) dp[i][(j + a[i]) & 1023] = true; for (int j = 0; j < kC; j++) if (now.test(j)) dp[i][j & a[i]] = true; cnt[i] = cnt[i - 1] + dp[i].count(); if (now.test(0) && dp[i].test(a[i])) cnt[i]--; //printf("cnt[%d] = %d\n", i, cnt[i]); //for (int j = 0; j < kC; j++) printf("%d", now[j] ? 1 : 0); //printf("\n"); //for (int j = 0; j < kC; j++) printf("%d", dp[i][j] ? 1 : 0); //printf("\n"); now = (now << a[i]) | (now >> (kC - a[i])) | dp[i]; } printf("%d\n", cnt[n]); // X & A + B -> ge B // X + A & B -> le B // dp[i][j] : lst and at i, possible values }