题库练习 Sign Posts
← 上一题 下一题 →

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 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.

输出格式

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.

输入输出样例

输入 #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
C++ 编辑器
输入
输出