結果
問題 | No.1689 Set Cards |
ユーザー | ぷら |
提出日時 | 2021-09-24 21:51:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 1,837 ms |
コンパイル使用メモリ | 205,936 KB |
実行使用メモリ | 19,456 KB |
最終ジャッジ日時 | 2024-07-05 10:26:25 |
合計ジャッジ時間 | 2,780 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 18 ms
19,328 KB |
testcase_14 | AC | 17 ms
19,328 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 20 ms
19,328 KB |
testcase_20 | AC | 19 ms
19,200 KB |
testcase_21 | AC | 20 ms
19,200 KB |
testcase_22 | AC | 19 ms
19,328 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 998244353; int main() { int N; cin >> N; vector<int>C(N); for(int i = 0; i < N; i++) { int k; cin >> k; int sum = 0; for(int j = 0; j < k; j++) { int a; cin >> a; sum += 1 << a; } C[i] = sum; } vector<vector<long long>>dp(N+1,vector<long long>(1 << 12)); dp[0][(1 << 12)-1] = 1; for(int i = 0; i < N; i++) { for(int j = 0; j < (1 << 12); j++) { dp[i+1][j] += dp[i][j]; dp[i+1][j] %= mod; dp[i+1][j&C[i]] += dp[i][j]; dp[i+1][j&C[i]] %= mod; } } cout << dp[N][0] << endl; }