CF1760G.SlavicG's Favorite Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a weighted tree with n vertices. Recall that a tree is a connected graph without any cycles. A weighted tree is a tree in which each edge has a certain weight. The tree is undirected, it doesn't have a root.
Since trees bore you, you decided to challenge yourself and play a game on the given tree.
In a move, you can travel from a node to one of its neighbors (another node it has a direct edge with).
You start with a variable x which is initially equal to 0 . When you pass through edge i , x changes its value to x XOR wi (where wi is the weight of the i -th edge).
Your task is to go from vertex a to vertex b , but you are allowed to enter node b if and only if after traveling to it, the value of x will become 0 . In other words, you can travel to node b only by using an edge i such that x XOR wi=0 . Once you enter node b the game ends and you win.
Additionally, you can teleport at most once at any point in time to any vertex except vertex b . You can teleport from any vertex, even from a .
Answer with "YES" if you can reach vertex b from a , and "NO" otherwise.
Note that XOR represents the bitwise XOR operation.
输入格式
The first line contains a single integer t ( 1≤t≤1000 ) — the number of test cases.
The first line of each test case contains three integers n , a , and b ( 2≤n≤105 ), ( 1≤a,b≤n;a=b ) — the number of vertices, and the starting and desired ending node respectively.
Each of the next n−1 lines denotes an edge of the tree. Edge i is denoted by three integers ui , vi and wi — the labels of vertices it connects ( 1≤ui,vi≤n;ui=vi;1≤wi≤109 ) and the weight of the respective edge.
It is guaranteed that the sum of n over all test cases does not exceed 105 .
输出格式
For each test case output "YES" if you can reach vertex b , and "NO" otherwise.
输入输出样例
输入#1
3 5 1 4 1 3 1 2 3 2 4 3 3 3 5 1 2 1 2 1 2 2 6 2 3 1 2 1 2 3 1 3 4 1 4 5 3 5 6 5
输出#1
YES NO YES
说明/提示
For the first test case, we can travel from node 1 to node 3 , x changing from 0 to 1 , then we travel from node 3 to node 2 , x becoming equal to 3 . Now, we can teleport to node 3 and travel from node 3 to node 4 , reaching node b , since x became equal to 0 in the end, so we should answer "YES".
For the second test case, we have no moves, since we can't teleport to node b and the only move we have is to travel to node 2 which is impossible since x wouldn't be equal to 0 when reaching it, so we should answer "NO".