結果
問題 | No.1843 Tree ANDistance |
ユーザー | magurofly |
提出日時 | 2022-02-18 21:34:59 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,376 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 91,512 KB |
最終ジャッジ日時 | 2024-06-29 08:27:15 |
合計ジャッジ時間 | 23,829 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
main = -> { N = gets.to_i edges = Array.new(N - 1) { a, b, c = gets.split.map(&:to_i); [a - 1, b - 1, c] } fact = Factorial.new(N, MOD) comb = (0 .. N).map { |c| fact.comb(c, 2) } ans = 0 (0 .. 30).each do |bit| uf = UnionFind.new(N) edges.each do |a, b, c| uf.merge(a, b) if c[bit] == 1 end leaders = (0 ... N).map { uf.leader(_1) }.uniq ans += leaders.sum { |i| comb[uf.size(i)] } * 2.pow(bit, MOD) ans %= MOD end puts ans } MOD = 10**9 + 7 class Factorial def initialize(max, mod) @mod = mod @fac = [1, 1] @fin = [1, 1] @inv = [nil, 1] (2 .. max).each do |i| @fac[i] = @fac[i - 1] * i % mod @inv[i] = mod - @inv[mod % i] * (mod / i) % mod @fin[i] = @fin[i - 1] * @inv[i] % mod end end def fact(n) @fac[n] end def comb(n, k) return 0 if n < k or n < 0 or k < 0 @fac[n] * @fin[k] % @mod * @fin[n - k] % @mod end end class UnionFind def initialize(size); @p = Array.new(size, -1); end def leader(i); j = i; j, i = i, @p[j] = @p[i] until @p[i] < 0; i; end def merge(i, j); k, l = leader(i), leader(j); return false if k == l; k, l = l, k if @p[k] > @p[l]; @p[k] += @p[l]; @p[l] = k; true; end def same?(i, j); leader(i) == leader(j); end def size(i); -@p[leader(i)]; end end main.call