結果
問題 | No.1843 Tree ANDistance |
ユーザー | hir355 |
提出日時 | 2022-02-18 22:21:44 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,236 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 153,856 KB |
最終ジャッジ日時 | 2024-06-29 09:13:40 |
合計ジャッジ時間 | 12,430 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 34 ms
52,660 KB |
testcase_22 | AC | 33 ms
52,968 KB |
testcase_23 | AC | 34 ms
52,948 KB |
testcase_24 | AC | 34 ms
53,088 KB |
testcase_25 | AC | 34 ms
54,104 KB |
testcase_26 | AC | 35 ms
53,264 KB |
testcase_27 | AC | 34 ms
53,556 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 35 ms
53,204 KB |
testcase_36 | AC | 35 ms
53,356 KB |
testcase_37 | AC | 36 ms
53,636 KB |
ソースコード
class UnionFind: def __init__(self, n): self.par = [i for i in range(n+1)] self.rank = [0] * (n + 1) self.size = [1] * (n + 1) def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def unite(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.rank[x] < self.rank[y]: self.par[x] = y self.size[y] += self.size[x] else: self.par[y] = x self.size[x] += self.size[y] if self.rank[x] == self.rank[y]: self.rank[x] += 1 def same_check(self, x, y): return self.find(x) == self.find(y) n = int(input()) uf = [UnionFind(n) for _ in range(32)] for i in range(n - 1): a, b, c = map(int, input().split()) for j in range(32): if (c >> j) & 1: uf[j].unite(a - 1, b - 1) ans = 0 for i, u in enumerate(uf): d = [0] * 32 for j in range(n): j = u.find(j) if d[j]: continue d[j] = 1 s = u.size[j] ans += (s * (s - 1) // 2) << i print(ans % (10 ** 9 + 7))