結果

問題 No.1689 Set Cards
ユーザー ぷらぷら
提出日時 2021-09-24 21:51:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 205,944 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-07-05 10:26:41
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
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 AC 20 ms
19,328 KB
testcase_12 AC 18 ms
19,328 KB
testcase_13 AC 18 ms
19,328 KB
testcase_14 AC 18 ms
19,456 KB
testcase_15 AC 6 ms
7,552 KB
testcase_16 AC 13 ms
14,336 KB
testcase_17 AC 4 ms
6,016 KB
testcase_18 AC 18 ms
19,200 KB
testcase_19 AC 19 ms
19,328 KB
testcase_20 AC 19 ms
19,200 KB
testcase_21 AC 20 ms
19,328 KB
testcase_22 AC 18 ms
19,328 KB
testcase_23 AC 18 ms
19,328 KB
testcase_24 AC 18 ms
19,328 KB
testcase_25 AC 19 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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-1);
        }
        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;
}
0