CF1110G.Tree-Tac-Toe

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The tic-tac-toe game is starting on a tree of nn 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 TT ( 1T500001 \le T \le 50\,000 ) — the number of test cases. Then descriptions of TT test cases follow.

The first line of each test contains a single integer nn ( 1n51051 \le n \le 5 \cdot 10^5 ) — the number of vertices in the tree.

Each of the following n1n - 1 lines contains integers vv , uu ( 1v,un1 \le v, u \le n ) denoting an edge of the tree connecting vertices vv and uu .

The last line of a test case contains a string of letters 'W' (for white) and 'N' (for not colored) of length nn 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 nn among all test cases is at most 51055 \cdot 10^5 .

输出格式

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 44 is already colored in white. The white player can win by coloring the vertex 11 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.

首页