結果

問題 No.2134 $\sigma$-algebra over Finite Set
ユーザー flygonflygon
提出日時 2022-11-26 15:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 84,536 KB
最終ジャッジ日時 2024-10-07 07:45:53
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,548 KB
testcase_01 AC 446 ms
84,532 KB
testcase_02 AC 439 ms
84,536 KB
testcase_03 AC 44 ms
54,968 KB
testcase_04 AC 88 ms
76,516 KB
testcase_05 AC 44 ms
55,424 KB
testcase_06 AC 98 ms
76,876 KB
testcase_07 AC 99 ms
77,112 KB
testcase_08 AC 43 ms
54,428 KB
testcase_09 AC 44 ms
55,056 KB
testcase_10 AC 249 ms
79,840 KB
testcase_11 AC 252 ms
79,752 KB
testcase_12 AC 279 ms
80,368 KB
testcase_13 AC 288 ms
80,376 KB
testcase_14 AC 103 ms
76,984 KB
testcase_15 AC 103 ms
76,864 KB
testcase_16 AC 96 ms
77,056 KB
testcase_17 AC 44 ms
56,076 KB
testcase_18 AC 43 ms
54,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
mod = 998244353
n,m = map(int,input().split())
A = [0]*m
Ac = [0]*m
B = [(2**n - 1)]*n
for i in range(m):
  l, *a = map(int,input().split())
  for j in range(l):
    A[i] |= 1 << (a[j] - 1)
  Ac[i] = ~A[i]
  for j in range(n):
    if (A[i] >> j) & 1:
      B[j] &= A[i]
    else:
      B[j] &= Ac[i]

s = set()
for i in range(n):
  s.add(B[i])

print(pow(2, len(s), mod))
0