A15723 | XOR, Tree, and Queries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a tree of $n$ vertices. The vertices are numbered from $1$ to $n$ .
You will need to assign a weight to each edge. Let the weight of the $i$ -th edge be $a_i$ ( $1 \leq i \leq n-1$ ). The weight of each edge should be an integer between $0$ and $2^{30}-1$ , inclusive.
You are given $q$ conditions. Each condition consists of three integers $u$ , $v$ , and $x$ . This means that the [bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all edges on the shortest path from $u$ to $v$ should be $x$ .
Find out if there exist $a_1, a_2, \ldots, a_{n-1}$ that satisfy the given conditions. If yes, print a solution such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest. Here, $\oplus$ denotes the bitwise XOR operation.
If there are multiple solutions such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest, print any.
You will need to assign a weight to each edge. Let the weight of the $i$ -th edge be $a_i$ ( $1 \leq i \leq n-1$ ). The weight of each edge should be an integer between $0$ and $2^{30}-1$ , inclusive.
You are given $q$ conditions. Each condition consists of three integers $u$ , $v$ , and $x$ . This means that the [bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all edges on the shortest path from $u$ to $v$ should be $x$ .
Find out if there exist $a_1, a_2, \ldots, a_{n-1}$ that satisfy the given conditions. If yes, print a solution such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest. Here, $\oplus$ denotes the bitwise XOR operation.
If there are multiple solutions such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest, print any.
输入格式
The first line contains two integers $n$ and $q$ ( $2 \le n \le 2.5 \cdot 10^5$ , $0 \le q \le 2.5 \cdot 10^5$ ).
The $i$ -th of the following $n-1$ lines contains two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n$ , $x_i \neq y_i$ ), meaning that the $i$ -th edge connects vertices $x_i$ and $y_i$ in the tree.
It is guaranteed that the given edges form a tree.
The following $q$ lines contain information about conditions.
Each line contains three integers $u$ , $v$ , $x$ ( $1 \le u, v \le n$ , $u \neq v$ , $0 \le x \le 2^{30}-1$ ), meaning that the bitwise XOR of all edges on the shortest path from $u$ to $v$ should be $x$ .
The $i$ -th of the following $n-1$ lines contains two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n$ , $x_i \neq y_i$ ), meaning that the $i$ -th edge connects vertices $x_i$ and $y_i$ in the tree.
It is guaranteed that the given edges form a tree.
The following $q$ lines contain information about conditions.
Each line contains three integers $u$ , $v$ , $x$ ( $1 \le u, v \le n$ , $u \neq v$ , $0 \le x \le 2^{30}-1$ ), meaning that the bitwise XOR of all edges on the shortest path from $u$ to $v$ should be $x$ .
输出格式
If there do not exist $a_1$ , $a_2$ , ..., $a_{n-1}$ that satisfy the given conditions, print "No".
Otherwise, print "Yes" in the first line.
Then print $n-1$ integers on the next line, where the $i$ -th integer is the weight of the $i$ -th edge. If there are multiple solutions that satisfy the given conditions, print a solution such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest.
If there are multiple solutions such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest, print any.
When printing "Yes" or "No", you can print each letter in any case (either upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
Otherwise, print "Yes" in the first line.
Then print $n-1$ integers on the next line, where the $i$ -th integer is the weight of the $i$ -th edge. If there are multiple solutions that satisfy the given conditions, print a solution such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest.
If there are multiple solutions such that $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ is the smallest, print any.
When printing "Yes" or "No", you can print each letter in any case (either upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
输入输出样例
输入 #1
4 4 1 2 2 3 3 4 1 4 3 2 4 2 1 3 1 2 3 1
输出 #1
No
输入 #2
6 2 1 2 2 3 3 4 2 5 5 6 1 4 2 2 6 7
输出 #2
Yes 4 2 4 1 6
输入 #3
6 2 1 2 2 3 3 4 2 5 5 6 1 4 3 1 6 5
输出 #3
Yes 6 1 4 3 0
For the first example, there does not exist a set of edge weights that satisfies the given conditions.
For the second example, the two given conditions are $a_1 \oplus a_2 \oplus a_3=2$ and $a_4 \oplus a_5=7$ . There can be multiple solutions, for example, $(a_1, a_2, a_3, a_4, a_5)=(1, 2, 1, 4, 3)$ .
For the third example, the two given conditions are $a_1 \oplus a_2 \oplus a_3=3$ and $a_1 \oplus a_4 \oplus a_5=5$ . There are multiple solutions that satisfy the given conditions.
$(a_1, a_2, a_3, a_4, a_5)=(1, 1, 3, 4, 0)$ satisfies the given conditions, but the bitwise XOR of all edge weights is $7$ , which does not have the smallest $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ , so it cannot be the answer.
For the second example, the two given conditions are $a_1 \oplus a_2 \oplus a_3=2$ and $a_4 \oplus a_5=7$ . There can be multiple solutions, for example, $(a_1, a_2, a_3, a_4, a_5)=(1, 2, 1, 4, 3)$ .
For the third example, the two given conditions are $a_1 \oplus a_2 \oplus a_3=3$ and $a_1 \oplus a_4 \oplus a_5=5$ . There are multiple solutions that satisfy the given conditions.
$(a_1, a_2, a_3, a_4, a_5)=(1, 1, 3, 4, 0)$ satisfies the given conditions, but the bitwise XOR of all edge weights is $7$ , which does not have the smallest $a_1 \oplus a_2 \oplus \ldots \oplus a_{n-1}$ , so it cannot be the answer.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted