結果

問題 No.2134 $\sigma$-algebra over Finite Set
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-05-11 23:11:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,169 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-05-05 18:46:32
合計ジャッジ時間 9,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 269 ms
85,120 KB
testcase_02 AC 279 ms
85,120 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 149 ms
84,096 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 313 ms
84,096 KB
testcase_07 AC 341 ms
84,480 KB
testcase_08 AC 170 ms
83,328 KB
testcase_09 AC 146 ms
81,920 KB
testcase_10 AC 519 ms
84,608 KB
testcase_11 AC 546 ms
84,480 KB
testcase_12 AC 1,695 ms
84,480 KB
testcase_13 TLE -
testcase_14 AC 174 ms
78,848 KB
testcase_15 AC 215 ms
77,696 KB
testcase_16 AC 199 ms
78,208 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/2134

"""

import sys
from sys import stdin

def uf_find(n,p):

    ufl = []

    while p[n] != n:
        ufl.append(n)
        n = p[n]

    for i in ufl:
        p[i] = n

    return n


def uf_union(a,b,p,rank):

    ap = uf_find(a,p)
    bp = uf_find(b,p)

    if ap == bp:
        return True
    else:

        if rank[ap] > rank[bp]:
            p[bp] = ap
        elif rank[ap] < rank[bp]:
            p[ap] = bp
        else:
            p[bp] = ap
            rank[ap] += 1

        return False

N,M = map(int,stdin.readline().split())

lis = [ [0] * N for i in range(N) ]

for loop in range(M):

    a = list(map(int,stdin.readline().split()))[1:]
    for i in range(len(a)):
        a[i] -= 1
    a = set(a)

    b = []

    for i in range(N):
        if i not in a:
            b.append(i)

    for i in a:
        for j in b:
            lis[i][j] = lis[j][i] = 1

p = [i for i in range(N)]
rank = [0] * N

for i in range(N):
    for j in range(i):

        if lis[i][j] == 0:
            uf_union(i,j,p,rank)

part = 0
for i in range(N):
    if uf_find(i,p) == i:
        part += 1

print (pow(2,part,998244353))
0