博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2018HDU多校训练-3-Problem F. Grab The Tree
阅读量:4576 次
发布时间:2019-06-08

本文共 2182 字,大约阅读时间需要 7 分钟。

Little Q and Little T are playing a game on a tree. There are
n vertices on the tree, labeled by 1,2,...,n , connected by n1 bidirectional edges. The i -th vertex has the value of wi .
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 x and y , he can't grab both x and y . 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(1T20) , denoting the number of test cases.
In each test case, there is one integer n(1n100000) in the first line, denoting the number of vertices.
In the next line, there are n integers w1,w2,...,wn(1wi109) , denoting the value of each vertex.
For the next n1 lines, each line contains two integers u and v , denoting a bidirectional edge between vertex u and v .
 

 

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
题解:由于是求异或,我们只需考虑每一位上的 1 的个数即可,比如:对于最高位,如果为偶数,那么小Q只需选一个或者不选即可那么小Q,小T最后该位上的数是相同的,如果为奇数,小Q选一个为必胜,因为小Q就选这一个,剩下都给小T,小T的最终结果必定小于小Q, 因此,我们只需要对每一位上的1的个数加一遍,如果有出现奇数个,则Q必胜,否者平局;
参考代码为:
 
#include
using namespace std;const int maxn=1e5+5;int w[maxn],u[maxn],v[maxn];int main(){ ios::sync_with_stdio(false); cin.tie(0); int T,n; cin>>T; while(T--) { cin>>n; bool flag=false; for(int i=1;i<=n;i++) cin>>w[i]; for(int i=1;i
>u[i]>>v[i]; for(int i=0;i<32;i++) { int cnt=0; for(int i=1;i<=n;i++) { if(w[i]&1) cnt++; w[i]>>=1; } if(cnt & 1) { cout<<"Q"<

  

转载于:https://www.cnblogs.com/songorz/p/9398451.html

你可能感兴趣的文章
PHP 文件上传七牛云
查看>>
ZT:Unity与C++之间进行socket通信
查看>>
Ural 1517. Freedom of Choice 后缀数组
查看>>
【转载】Maven入门实践
查看>>
1-4-03:奇偶数判断
查看>>
【SQL Server备份恢复】提高SQL Server备份速度
查看>>
命令行简介(附加参考资料)
查看>>
从0开始整合SSM框架-1.mybatis
查看>>
移位操作的疑问
查看>>
UILabel常用属性小结
查看>>
gitlab 邮件服务器配置
查看>>
Python 循环语句(while, for)
查看>>
深入理解JavaScript原型链
查看>>
LinearGradient类来实现图片的渐变效果
查看>>
Golang关键字—— if/else
查看>>
数据清洗
查看>>
PHP&MySQL(三)——数组
查看>>
各种语法解释及用法
查看>>
GPS.NET 和 GeoFramework开源了
查看>>
汇编:采用址表的方法编写程序实现C程序的switch功能
查看>>