結果

問題 No.1689 Set Cards
ユーザー tabae326tabae326
提出日時 2021-09-24 22:14:38
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,413 bytes
コンパイル時間 5,285 ms
コンパイル使用メモリ 205,184 KB
実行使用メモリ 11,424 KB
最終ジャッジ日時 2023-09-18 21:32:43
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 13 ms
11,276 KB
testcase_12 AC 13 ms
11,260 KB
testcase_13 AC 14 ms
11,220 KB
testcase_14 AC 14 ms
11,172 KB
testcase_15 AC 5 ms
5,108 KB
testcase_16 AC 10 ms
8,616 KB
testcase_17 AC 4 ms
4,384 KB
testcase_18 AC 14 ms
10,976 KB
testcase_19 AC 14 ms
11,260 KB
testcase_20 AC 14 ms
10,828 KB
testcase_21 AC 14 ms
11,424 KB
testcase_22 AC 14 ms
11,096 KB
testcase_23 AC 14 ms
11,268 KB
testcase_24 AC 14 ms
11,092 KB
testcase_25 AC 14 ms
11,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)
// Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac
#define dump(var)  do{std::cerr << #var << " : ";view(var);}while(0)
template<typename T> void view(T e){std::cerr << e << "\n";}
template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";}
template<typename T> void view(const std::vector<std::vector<T> >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } }
template<typename T> void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); }

#include <atcoder/modint>
using namespace atcoder;
using mint = modint998244353;

void solve() {
    ll n;
    cin >> n;
    vector<int> mask(n, 0);
    rep(i, 0, n) {
        ll k;
        cin >> k;
        rep(j, 0, k) {
            ll c;
            cin >> c;
            mask[i] |= (1<<(c-1));
        }
    }
    vector dp(n+1, vector<mint>(1<<12, 0));
    dp[0][(1<<12)-1] = 1;
    rep(i, 0, n) {
        rep(bit, 0, 1<<12) {
            dp[i+1][bit] += dp[i][bit];
            dp[i+1][bit & mask[i]] += dp[i][bit];
        }
    }
    cout << dp[n][0].val() << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    solve();
    return 0;
}
0