結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,484 KB
testcase_01 AC 255 ms
85,672 KB
testcase_02 AC 259 ms
85,368 KB
testcase_03 AC 37 ms
52,696 KB
testcase_04 AC 128 ms
84,524 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 308 ms
84,124 KB
testcase_07 AC 329 ms
84,580 KB
testcase_08 AC 143 ms
83,848 KB
testcase_09 AC 127 ms
82,124 KB
testcase_10 AC 475 ms
84,744 KB
testcase_11 AC 472 ms
84,620 KB
testcase_12 AC 1,671 ms
84,440 KB
testcase_13 TLE -
testcase_14 AC 170 ms
78,324 KB
testcase_15 AC 209 ms
77,672 KB
testcase_16 AC 186 ms
78,084 KB
testcase_17 AC 37 ms
53,028 KB
testcase_18 AC 36 ms
52,688 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