結果
問題 | No.2134 $\sigma$-algebra over Finite Set |
ユーザー | だれ |
提出日時 | 2022-11-06 20:26:14 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 484 ms / 2,000 ms |
コード長 | 1,087 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 84,952 KB |
最終ジャッジ日時 | 2024-10-07 07:36:39 |
合計ジャッジ時間 | 4,639 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 484 ms
84,736 KB |
testcase_02 | AC | 450 ms
84,952 KB |
testcase_03 | AC | 38 ms
52,608 KB |
testcase_04 | AC | 119 ms
76,812 KB |
testcase_05 | AC | 37 ms
52,352 KB |
testcase_06 | AC | 128 ms
77,056 KB |
testcase_07 | AC | 143 ms
76,928 KB |
testcase_08 | AC | 70 ms
61,952 KB |
testcase_09 | AC | 68 ms
62,080 KB |
testcase_10 | AC | 253 ms
79,440 KB |
testcase_11 | AC | 250 ms
79,272 KB |
testcase_12 | AC | 281 ms
80,000 KB |
testcase_13 | AC | 279 ms
80,128 KB |
testcase_14 | AC | 110 ms
76,700 KB |
testcase_15 | AC | 108 ms
76,764 KB |
testcase_16 | AC | 104 ms
76,672 KB |
testcase_17 | AC | 39 ms
51,712 KB |
testcase_18 | AC | 39 ms
51,840 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] * m, [0] * m 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))