結果
問題 | No.1689 Set Cards |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-16 19:55:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 951 bytes |
コンパイル時間 | 901 ms |
コンパイル使用メモリ | 111,920 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-06-10 01:52:03 |
合計ジャッジ時間 | 2,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 21 ms
19,456 KB |
testcase_14 | AC | 20 ms
19,456 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 24 ms
19,328 KB |
testcase_20 | RE | - |
testcase_21 | AC | 26 ms
19,456 KB |
testcase_22 | AC | 23 ms
19,328 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; const long long modc=998244353; int main(){ long long N, M, s, k, C, ans=0; M = 1LL<<12; cin >> N; vector<long long> S(N+1); for (int i=1; i<=N; i++){ cin >> k; s = 0; for (int j=0; j<k; j++){ cin >> C; s += 1LL<<C; } S[i] = s; } vector<vector<long long>> dp(N+1, vector<long long>(M)); for (int i=1; i<=N; i++){ dp[i][S[i]]++; } for (int i=1; i<=N; i++){ for (int j=0; j<M; j++){ dp[i][j] += dp[i-1][j]; dp[i][j] %= modc; dp[i][j&S[i]] += dp[i-1][j]; dp[i][j&S[i]] %= modc; } } cout << dp[N][0] << endl; return 0; }