问题 B: The XOR Longest Path

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:51 解决:18

题目描述

In an edge-weighted tree, the xor-length of a path p is defined as the xor sum of the weights of edges on p:
xorlength(p)=⊕e∈pw(e)
⊕ is the xor operator.
We say a path the xor-longest path if it has the largest xor-length. Given an edge-weighted tree with n nodes, can you find the xor-longest path?

输入

The input contains several test cases. The first line of each test case contains an integer n(1≤n≤100000), The following n-1 lines each contains three integers u(0≤u<n),v(0≤v<n),w(0≤w<231), which means there is an edge between node u and v of length w.

输出

For each test case output the xor-length of the xor-longest path.

样例输入 复制

4
0 1 3
1 2 4
1 3 6

样例输出 复制

7

来源/分类