A10971 | Perpetual Motion Machine
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Developer Petr thinks that he invented a perpetual motion machine. Namely, he has a lot of elements, which work in the following way.
Each element has one controller that can be set to any non-negative real value. If a controller is set on some value $x$ , then the controller consumes $x^{2}$ energy units per second. At the same time, any two elements connected by a wire produce $y·z$ energy units per second, where $y$ and $z$ are the values set on their controllers.
Petr has only a limited number of wires, so he has already built some scheme of elements and wires, and is now interested if it's possible to set the controllers in such a way that the system produces at least as much power as it consumes, and at least one controller is set on the value different from $0$ . Help him check this, and if it's possible, find the required integer values that should be set.
It is guaranteed that if there exist controllers' settings satisfying the above conditions, then there exist required integer values not greater than $10^{6}$ .
Each element has one controller that can be set to any non-negative real value. If a controller is set on some value $x$ , then the controller consumes $x^{2}$ energy units per second. At the same time, any two elements connected by a wire produce $y·z$ energy units per second, where $y$ and $z$ are the values set on their controllers.
Petr has only a limited number of wires, so he has already built some scheme of elements and wires, and is now interested if it's possible to set the controllers in such a way that the system produces at least as much power as it consumes, and at least one controller is set on the value different from $0$ . Help him check this, and if it's possible, find the required integer values that should be set.
It is guaranteed that if there exist controllers' settings satisfying the above conditions, then there exist required integer values not greater than $10^{6}$ .
输入格式
There are several (at least one) test cases in the input. The first line contains single integer — the number of test cases.
There is an empty line before each test case. The first line of test case contains two integers $n$ and $m$ ( $1<=n<=10^{5}$ , $0<=m<=10^{5}$ ) — the number of elements in the scheme and the number of wires.
After that, $m$ lines follow, each of them contains two integers $a$ and $b$ ( $1<=a,b<=n$ ) — two elements connected by a wire. No element is connected with itself, no two elements are connected by more than one wire.
It is guaranteed that the sum of $n$ and the sum of $m$ over all test cases do not exceed $10^{5}$ .
For hacks you can only use tests with one test case.
There is an empty line before each test case. The first line of test case contains two integers $n$ and $m$ ( $1<=n<=10^{5}$ , $0<=m<=10^{5}$ ) — the number of elements in the scheme and the number of wires.
After that, $m$ lines follow, each of them contains two integers $a$ and $b$ ( $1<=a,b<=n$ ) — two elements connected by a wire. No element is connected with itself, no two elements are connected by more than one wire.
It is guaranteed that the sum of $n$ and the sum of $m$ over all test cases do not exceed $10^{5}$ .
For hacks you can only use tests with one test case.
输出格式
Print answer for each test case.
For each test case print "YES" if it's possible to set the controllers in such a way that the consumed power is not greater than the power produced, and the required values on the next line. The settings should be integers from $0$ to $10^{6}$ , inclusive, and at least one value should be different from $0$ . If there are multiple answers, print any of them.
If it's not possible to set the controllers in the required way, print one line "NO".
For each test case print "YES" if it's possible to set the controllers in such a way that the consumed power is not greater than the power produced, and the required values on the next line. The settings should be integers from $0$ to $10^{6}$ , inclusive, and at least one value should be different from $0$ . If there are multiple answers, print any of them.
If it's not possible to set the controllers in the required way, print one line "NO".
输入输出样例
输入 #1
4 4 4 1 2 2 3 3 4 4 2 3 2 2 3 3 1 4 6 1 2 3 4 4 2 1 4 1 3 3 2 10 9 2 1 3 2 5 2 6 2 2 7 2 8 2 9 2 10 4 2
输出 #1
YES 1 2 2 1 NO YES 1 1 1 1 YES 1 5 1 1 1 1 1 1 1 1
In the first example it's possible to set the controllers in the required way, for example, in the following way: set $1$ on the first element, set $2$ on the second and on the third, set $1$ on the fourth. The consumed power is then equal to $1^{2}+2^{2}+2^{2}+1^{2}=10$ energy units per second, the produced power is equal to $1·2+2·2+2·1+2·1=10$ energy units per second. Thus the answer is "YES".
In the second test case it's not possible to set the controllers in the required way. For example, if we set all controllers to $0.5$ , then the consumed powers equals $0.75$ energy units per second, while produced power equals $0.5$ energy units per second.
In the second test case it's not possible to set the controllers in the required way. For example, if we set all controllers to $0.5$ , then the consumed powers equals $0.75$ energy units per second, while produced power equals $0.5$ energy units per second.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted