A10057 | Sign Posts
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One Khanate had a lot of roads and very little wood. Riding along the roads was inconvenient, because the roads did not have road signs indicating the direction to important cities.
The Han decided that it's time to fix the issue, and ordered to put signs on every road. The Minister of Transport has to do that, but he has only $k$ signs. Help the minister to solve his problem, otherwise the poor guy can lose not only his position, but also his head.
More formally, every road in the Khanate is a line on the $Oxy$ plane, given by an equation of the form $Ax+By+C=0$ ( $A$ and $B$ are not equal to 0 at the same time). You are required to determine whether you can put signs in at most $k$ points so that each road had at least one sign installed.
The Han decided that it's time to fix the issue, and ordered to put signs on every road. The Minister of Transport has to do that, but he has only $k$ signs. Help the minister to solve his problem, otherwise the poor guy can lose not only his position, but also his head.
More formally, every road in the Khanate is a line on the $Oxy$ plane, given by an equation of the form $Ax+By+C=0$ ( $A$ and $B$ are not equal to 0 at the same time). You are required to determine whether you can put signs in at most $k$ points so that each road had at least one sign installed.
输入格式
The input starts with two positive integers $n$ , $k$ ( $1<=n<=10^{5},1<=k<=5$ )
Next $n$ lines contain three integers each, $A_{i},B_{i},C_{i}$ , the coefficients of the equation that determines the road ( $|A_{i}|,|B_{i}|,|C_{i}|<=10^{5}$ , $A_{i}^{2}+B_{i}^{2}≠0$ ).
It is guaranteed that no two roads coincide.
Next $n$ lines contain three integers each, $A_{i},B_{i},C_{i}$ , the coefficients of the equation that determines the road ( $|A_{i}|,|B_{i}|,|C_{i}|<=10^{5}$ , $A_{i}^{2}+B_{i}^{2}≠0$ ).
It is guaranteed that no two roads coincide.
输出格式
If there is no solution, print "NO" in the single line (without the quotes).
Otherwise, print in the first line "YES" (without the quotes).
In the second line print a single number $m$ ( $m<=k$ ) — the number of used signs. In the next $m$ lines print the descriptions of their locations.
Description of a location of one sign is two integers $v,u$ . If $u$ and $v$ are two distinct integers between $1$ and $n$ , we assume that sign is at the point of intersection of roads number $v$ and $u$ . If $u=-1$ , and $v$ is an integer between $1$ and $n$ , then the sign is on the road number $v$ in the point not lying on any other road. In any other case the description of a sign will be assumed invalid and your answer will be considered incorrect. In case if $v=u$ , or if $v$ and $u$ are the numbers of two non-intersecting roads, your answer will also be considered incorrect.
The roads are numbered starting from $1$ in the order in which they follow in the input.
Otherwise, print in the first line "YES" (without the quotes).
In the second line print a single number $m$ ( $m<=k$ ) — the number of used signs. In the next $m$ lines print the descriptions of their locations.
Description of a location of one sign is two integers $v,u$ . If $u$ and $v$ are two distinct integers between $1$ and $n$ , we assume that sign is at the point of intersection of roads number $v$ and $u$ . If $u=-1$ , and $v$ is an integer between $1$ and $n$ , then the sign is on the road number $v$ in the point not lying on any other road. In any other case the description of a sign will be assumed invalid and your answer will be considered incorrect. In case if $v=u$ , or if $v$ and $u$ are the numbers of two non-intersecting roads, your answer will also be considered incorrect.
The roads are numbered starting from $1$ in the order in which they follow in the input.
输入输出样例
输入 #1
3 1 1 0 0 0 -1 0 7 -93 0
输出 #1
YES 1 1 2
输入 #2
3 1 1 0 0 0 1 0 1 1 3
输出 #2
NO
输入 #3
2 3 3 4 5 5 6 7
输出 #3
YES 2 1 -1 2 -1
Note that you do not have to minimize $m$ , but it shouldn't be more than $k$ .
In the first test all three roads intersect at point (0,0).
In the second test all three roads form a triangle and there is no way to place one sign so that it would stand on all three roads at once.
In the first test all three roads intersect at point (0,0).
In the second test all three roads form a triangle and there is no way to place one sign so that it would stand on all three roads at once.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted