結果

問題 No.1689 Set Cards
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-24 23:03:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-07-05 11:12:10
合計ジャッジ時間 35,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,292 ms
95,268 KB
testcase_01 AC 1,307 ms
95,100 KB
testcase_02 AC 1,293 ms
95,460 KB
testcase_03 AC 1,257 ms
95,376 KB
testcase_04 AC 1,250 ms
96,080 KB
testcase_05 AC 1,240 ms
95,596 KB
testcase_06 WA -
testcase_07 AC 1,284 ms
95,492 KB
testcase_08 AC 1,292 ms
95,108 KB
testcase_09 AC 1,266 ms
95,120 KB
testcase_10 AC 1,295 ms
95,032 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,251 ms
95,488 KB
testcase_20 AC 1,238 ms
95,304 KB
testcase_21 AC 1,292 ms
95,104 KB
testcase_22 AC 1,280 ms
95,360 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 998244353
U = 12

card = [0] * (1 << U)
N = int(input())
for i in range(N):
    k, *C = map(int, input().split())
    bit = 0
    for c in C:
        c -= 1
        bit |= (1 << c)
    card[bit] += 1

dp = defaultdict(int)
dp[0] = pow(2, card[0], mod) - 1
for S in range(1, 1 << U):
    ndp = defaultdict(int)
    ndp[S] += card[S]
    for k, v in dp.items():
        ndp[k] += v
        ndp[k] %= mod
        ndp[S & k] += v * (pow(2, card[S], mod) - 1) % mod
        ndp[S & k] %= mod
    dp = ndp

print(dp[0])
0