[bzoj 1954]Pku3764 The xor-longest Path
生活随笔
收集整理的這篇文章主要介紹了
[bzoj 1954]Pku3764 The xor-longest Path
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
傳送門 :http://www.lydsy.com/JudgeOnline/problem.php?id=1954
Pku3764 The xor-longest Path
Time Limit:?1 Sec??Memory Limit:?64 MBSubmit:?839??Solved:?369
[Submit][Status][Discuss]
Description
?給定一棵n個點的帶權樹,求樹上最長的異或和路徑Input
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 < 2^31), which means there is an edge between node u and v of length w.Output
For each test case output the xor-length of the xor-longest path.Sample Input
41 2 3
2 3 4
2 4 6
Sample Output
7HINT
The xor-longest path is 1->2->3, which has length 7 (=3 ⊕ 4)?
注意:結點下標從1開始到N....
對于x,y之間的異或和,等于x到根節點的異或和 ^ y到根節點的異或和。
然后把它們丟到trie里,貪心就好。
代碼待補
轉載于:https://www.cnblogs.com/kvrmnks/p/6917317.html
總結
以上是生活随笔為你收集整理的[bzoj 1954]Pku3764 The xor-longest Path的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: urb数据结构【转】
- 下一篇: Android首次启动时间长优化之预编译