結果
問題 | No.1444 !Andd |
ユーザー | iaNTU |
提出日時 | 2021-01-22 15:13:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 2,190 ms |
コンパイル使用メモリ | 205,056 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 21:30:08 |
合計ジャッジ時間 | 4,482 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int kN = int(5E3 + 10); constexpr int kC = 1 << 10; int a[kN]; bitset<kC> now, cur; int main() { int n, ans = 1; scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); now[0] = true; for (int i = 1; i <= n; i++) { cur.reset(); for (int j = 0; j < kC; j++) if (now.test(j)) cur[j & a[i]] = true; ans += cur.count(); if (now.test(0) && cur.test(a[i])) ans--; now = (now << a[i]) | (now >> (kC - a[i])) | cur; } printf("%d\n", ans); }