結果

問題 No.1843 Tree ANDistance
ユーザー yudedakoyudedako
提出日時 2022-02-28 18:46:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 1,753 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 152,580 KB
実行使用メモリ 12,216 KB
最終ジャッジ日時 2024-07-06 21:56:36
合計ジャッジ時間 7,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
11,500 KB
testcase_01 AC 230 ms
11,552 KB
testcase_02 AC 193 ms
11,100 KB
testcase_03 AC 203 ms
11,084 KB
testcase_04 AC 208 ms
12,216 KB
testcase_05 AC 136 ms
12,040 KB
testcase_06 AC 141 ms
12,068 KB
testcase_07 AC 217 ms
11,108 KB
testcase_08 AC 226 ms
11,292 KB
testcase_09 AC 185 ms
10,624 KB
testcase_10 AC 175 ms
10,560 KB
testcase_11 AC 207 ms
12,160 KB
testcase_12 AC 126 ms
11,344 KB
testcase_13 AC 135 ms
11,392 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 148 ms
9,600 KB
testcase_29 AC 96 ms
7,552 KB
testcase_30 AC 81 ms
7,296 KB
testcase_31 AC 127 ms
9,728 KB
testcase_32 AC 136 ms
10,424 KB
testcase_33 AC 30 ms
5,504 KB
testcase_34 AC 71 ms
8,704 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <vector>
#include <numeric>
#include <algorithm>
#include <queue>
#include <string>
#include <random>
#include <array>
#include <climits>
#include <map>
#include <cassert>
#include <stack>
#include <iomanip>
#include <cfloat>
#include <bitset>
#include <fstream>
#include <chrono>


int main() {
	constexpr int MOD = 1000000007;
	int n; std::cin >> n;
	std::vector<std::tuple<int, int, int>> edges(n - 1);
	for (auto& [a, b, c] : edges) {
		std::cin >> a >> b >> c; --a; --b;
	}
	std::vector<std::vector<std::pair<int, int>>> graph(n);
	for (const auto [a, b, c] : edges) {
		graph[a].emplace_back(b, c);
		graph[b].emplace_back(a, c);
	}
	std::vector<int> depth(n, -1); depth[0] = 0;
	std::queue<int> queue; queue.push(0);
	while (!queue.empty()) {
		const auto top = queue.front(); queue.pop();
		for (const auto [next, _] : graph[top]) {
			if (depth[next] == -1) {
				depth[next] = depth[top] + 1;
				queue.push(next);
			}
		}
	}
	std::vector<int> from_leaf(n); std::iota(from_leaf.begin(), from_leaf.end(), 0);
	std::sort(from_leaf.rbegin(), from_leaf.rend(), [&depth](const int i, const int j) {return depth[i] < depth[j]; });
	long long int result{ 0 };
	for (auto d = 0; d < 30; ++d) {
		long long int one_path{ 0 };
		std::vector<int> end_path(n, 0);
		for (const auto node : from_leaf) {
			int count{ 0 };
			for (const auto [child, c] : graph[node]) {
				if (depth[child] <= depth[node] || (((c >> d) & 1) == 0)) continue;
				one_path += (count + 1LL) * (end_path[child] + 1LL);
				count += end_path[child] + 1;
			}
			end_path[node] = count;
		}
		result += ((one_path % MOD) << d) % MOD;
	}
	result %= MOD;
	std::cout << result << '\n';
}
0