結果
問題 | No.2134 $\sigma$-algebra over Finite Set |
ユーザー | shobonvip |
提出日時 | 2022-11-26 00:18:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 881 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,636 KB |
実行使用メモリ | 77,644 KB |
最終ジャッジ日時 | 2024-10-02 06:35:18 |
合計ジャッジ時間 | 2,896 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,840 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 41 ms
52,096 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 42 ms
52,224 KB |
testcase_09 | AC | 41 ms
52,352 KB |
testcase_10 | AC | 116 ms
76,928 KB |
testcase_11 | AC | 105 ms
76,560 KB |
testcase_12 | AC | 119 ms
76,928 KB |
testcase_13 | AC | 146 ms
76,672 KB |
testcase_14 | AC | 95 ms
76,544 KB |
testcase_15 | AC | 95 ms
76,672 KB |
testcase_16 | AC | 84 ms
76,544 KB |
testcase_17 | AC | 40 ms
51,968 KB |
testcase_18 | AC | 40 ms
51,840 KB |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x n,m = map(int,input().split()) uf = UnionFind(n) for i in range(m): l = list(map(int,input().split())) v = [0] * n for j in range(1, l[0]+1): v[l[j] - 1] = 1 a = -1 b = -1 for j in range(n): if v[j] == 1: if a >= 0: uf.union(a, j) a = j else: if b >= 0: uf.union(b, j) b = j mod = 998244353 ans = pow(2, n+1, mod) inv2 = pow(2, mod-2, mod) for i in range(n): if uf.parents[i] < 0: ans *= inv2 ans %= mod print(ans)