Problem F. Grab The Tree HDU - 6324(树形dp+博弈)
Little Q and Little T are playing a game on a tree. There are nn vertices on the tree, labeled by 1,2,…,n1,2,…,n, connected by n?1n?1 bidirectional edges. The ii-th vertex has the value of wiwi.
In this game, Little Q needs to grab some vertices on the tree. He can select any number of vertices to grab, but he is not allowed to grab both vertices that are adjacent on the tree. That is, if there is an edge between xx and yy, he can’t grab both xx and yy. After Q’s move, Little T will grab all of the rest vertices. So when the game finishes, every vertex will be occupied by either Q or T.
The final score of each player is the bitwise XOR sum of his choosen vertices’ value. The one who has the higher score will win the game. It is also possible for the game to end in a draw. Assume they all will play optimally, please write a program to predict the result.
Input
The first line of the input contains an integer T(1≤T≤20)T(1≤T≤20), denoting the number of test cases.
In each test case, there is one integer n(1≤n≤100000)n(1≤n≤100000) in the first line, denoting the number of vertices.
In the next line, there are nn integers w1,w2,…,wn(1≤wi≤109)w1,w2,…,wn(1≤wi≤109), denoting the value of each vertex.
For the next n?1n?1 lines, each line contains two integers uu and vv, denoting a bidirectional edge between vertex uu and vv.
Output
For each test case, print a single line containing a word, denoting the result. If Q wins, please print Q. If T wins, please print T. And if the game ends in a draw, please print D.
Sample Input
1
3
2 2 2
1 2
1 3
Sample Output
Q
在樹上選取點求異或和,Q先選,剩下的點就是T選的了。問最后誰會贏。
樹形dp,dp[i][0/1]代表著這個節點選還是不選。
狀態轉移方程:
dp[u][1]=max(dp[u][1],dp[u][1]^dp[to][0]);
dp[u][0]=max(dp[u][0],max(dp[u][0] ^ dp[to][1],dp[u][0]^dp[to][0]));
樹形dp完了之后,選取dp[1][1]和dp[1][0]之間最大的那一個作為Q的得分,剩下的就是T的得分了,然后作比較就好了。
代碼如下:
努力加油a啊,(o)/~
總結
以上是生活随笔為你收集整理的Problem F. Grab The Tree HDU - 6324(树形dp+博弈)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Just $h$-index HDU -
- 下一篇: Pots POJ - 3414(bfs)