結果

問題 No.2134 $\sigma$-algebra over Finite Set
ユーザー flygonflygon
提出日時 2022-11-26 00:02:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 950 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 102,324 KB
最終ジャッジ日時 2024-10-02 06:26:21
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 42 ms
55,004 KB
testcase_04 WA -
testcase_05 AC 43 ms
54,272 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 43 ms
55,040 KB
testcase_09 AC 44 ms
54,784 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
54,400 KB
testcase_18 AC 42 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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())
s = set()
a = []
l = []
for i in range(m):
  aa = list(map(int,input().split()))
  l.append(aa[0])
  a.append(set(aa[1:]))

p = [-1]*(m+1)
def find(x):
  if p[x] < 0:
    return x
  else:
    p[x] = find(p[x])
    return p[x]
def union(x,y):
  x = find(x)
  y = find(y)
  if x == y:
    return
  if p[x] > p[y]:
    x,y = y,x
  p[x] += p[y]
  p[y] = x
un = []
for i in range(1,n+1):
  rep = -1
  flg = 0
  for j in range(m):
    if i in a[j] and rep == -1:
      rep = j
      flg = 1
    else:
      union(j,rep)
  if flg == 0:
    un.append(i)

d = defaultdict(int)
for i in range(1,m+1):
  d[find(i)] += 1

ans = pow(2, (un != []))
for v in d.values():
  ans *= pow(2, v+1, mod)
  ans %= mod

print(ans)



0