結果

問題 No.1843 Tree ANDistance
ユーザー V_MelvilleV_Melville
提出日時 2022-02-19 19:53:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 652 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 5,355 ms
コンパイル使用メモリ 313,624 KB
実行使用メモリ 9,940 KB
最終ジャッジ日時 2024-06-29 10:39:02
合計ジャッジ時間 18,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
9,720 KB
testcase_01 AC 555 ms
9,776 KB
testcase_02 AC 540 ms
9,740 KB
testcase_03 AC 538 ms
9,604 KB
testcase_04 AC 553 ms
9,640 KB
testcase_05 AC 519 ms
9,912 KB
testcase_06 AC 528 ms
9,864 KB
testcase_07 AC 522 ms
9,248 KB
testcase_08 AC 531 ms
9,444 KB
testcase_09 AC 505 ms
9,340 KB
testcase_10 AC 499 ms
9,240 KB
testcase_11 AC 549 ms
9,612 KB
testcase_12 AC 470 ms
9,132 KB
testcase_13 AC 545 ms
9,316 KB
testcase_14 AC 20 ms
5,376 KB
testcase_15 AC 21 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 23 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 592 ms
9,328 KB
testcase_29 AC 395 ms
7,340 KB
testcase_30 AC 374 ms
7,440 KB
testcase_31 AC 652 ms
9,940 KB
testcase_32 AC 613 ms
9,596 KB
testcase_33 AC 189 ms
5,436 KB
testcase_34 AC 478 ms
8,092 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::vector;
using std::array;
using mint = modint1000000007;

int main() {
	int n;
	cin >> n;
	
	vector<array<int, 3>> es(n-1);
	for (auto& [a, b, c] : es) {
		cin >> a >> b >> c;
		--a; --b;
	}
	
	mint ans;
	rep(i, 30) {
		dsu t(n);
		for (auto& [a, b, c] : es) {
			if (c>>i&1) {
				t.merge(a, b);
			}
		}
		for (auto g : t.groups()) {
			mint x = g.size();
			x = x * (x-1) / 2;
			ans += x * (1<<i);
		}
	}
	
	cout << ans.val() << '\n';
	
	return 0;
}
0