CF1110G.Tree-Tac-Toe
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The tic-tac-toe game is starting on a tree of n vertices. Some vertices are already colored in white while the remaining are uncolored.
There are two players — white and black. The players make moves alternatively. The white player starts the game. In his turn, a player must select one uncolored vertex and paint it in his color.
The player wins if he paints some path of three vertices in his color. In case all vertices are colored and neither player won, the game ends in a draw.
Could you please find who will win the game or whether it ends as a draw, assuming both players play optimally?
输入格式
The first line contains a single integer T ( 1≤T≤50000 ) — the number of test cases. Then descriptions of T test cases follow.
The first line of each test contains a single integer n ( 1≤n≤5⋅105 ) — the number of vertices in the tree.
Each of the following n−1 lines contains integers v , u ( 1≤v,u≤n ) denoting an edge of the tree connecting vertices v and u .
The last line of a test case contains a string of letters 'W' (for white) and 'N' (for not colored) of length n denoting already colored vertices. Vertexes already colored in white are denoted as 'W'.
It's guaranteed that the given edges form a tree, that there is at least one uncolored vertex and that there is no path of three white vertices.
It's guaranteed that sum of all n among all test cases is at most 5⋅105 .
输出格式
For every test case, print either "White", "Draw" or "Black", depending on the result of the game.
输入输出样例
输入#1
2 4 1 2 1 3 1 4 NNNW 5 1 2 2 3 3 4 4 5 NNNNN
输出#1
White Draw
说明/提示
In the first example, vertex 4 is already colored in white. The white player can win by coloring the vertex 1 in white first and the remaining vertex on his second turn. The process is illustrated with the pictures below.
In the second example, we can show that no player can enforce their victory.