結果
問題 | No.2134 $\sigma$-algebra over Finite Set |
ユーザー | だれ |
提出日時 | 2022-11-06 20:24:41 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,087 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 85,012 KB |
最終ジャッジ日時 | 2024-09-24 07:25:48 |
合計ジャッジ時間 | 4,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 470 ms
84,792 KB |
testcase_02 | AC | 459 ms
85,012 KB |
testcase_03 | AC | 36 ms
52,764 KB |
testcase_04 | AC | 117 ms
77,020 KB |
testcase_05 | AC | 36 ms
53,020 KB |
testcase_06 | AC | 127 ms
76,728 KB |
testcase_07 | AC | 137 ms
77,092 KB |
testcase_08 | AC | 69 ms
64,252 KB |
testcase_09 | AC | 64 ms
62,484 KB |
testcase_10 | AC | 260 ms
79,592 KB |
testcase_11 | AC | 259 ms
79,384 KB |
testcase_12 | AC | 289 ms
79,864 KB |
testcase_13 | AC | 289 ms
80,228 KB |
testcase_14 | AC | 104 ms
76,924 KB |
testcase_15 | RE | - |
testcase_16 | AC | 99 ms
76,800 KB |
testcase_17 | AC | 37 ms
53,408 KB |
testcase_18 | AC | 36 ms
53,144 KB |
ソースコード
class UnionFind: def __init__(self, _n): self.v = [-1] * _n self.n = _n def find(self, x): if self.v[x] < 0: return x self.v[x] = self.find(self.v[x]) return self.v[x] def merge(self, a, b): a = self.find(a) b = self.find(b) if a == b: return if self.v[a] > self.v[b]: a, b = b, a self.v[a] += self.v[b] self.v[b] = a def size(self): res = 0 for i in range(self.n): if self.v[i] < 0: res += 1 return res n, m = map(int, input().split()) B = [(2 ** n - 1)] * n A, A_c = [0] * n, [0] * n for i in range(m): l, *a = map(int, input().split()) for j in range(l): A[i] |= 1 << (a[j] - 1) A_c[i] = ~A[i] for j in range(n): if (A[i] >> j) & 1: B[j] &= A[i] else: B[j] &= A_c[i] uf = UnionFind(n) for i in range(n): for j in range(n): if B[i] == B[j]: uf.merge(i, j) print(pow(2, uf.size(), 998244353))