#P13667. [GCPC 2023] Balloon Darts
[GCPC 2023] Balloon Darts
题目描述
As you may know, you get a colourful balloon for each problem you solve in an ICPC contest. You were quite successful in your last contest and now you own a remarkable collection of balloons. The obvious thing to do with these balloons is to pop them all using darts. However, you only have three darts.
:::align{center} Popping balloons as an amusement park attraction. Photo by blende12, Pixabay :::
The balloons are modelled as points in the plane with fixed locations. For each dart you choose from where and in which direction to throw it. The dart travels in a straight line, popping all balloons in its way.
As you practised a lot during the last years, you can throw a dart precisely in any direction and it will fly infinitely far. Thus, if anyone can pop all the balloons, it is you. However, before the fun begins, you first need to determine if you can pop all balloons using at most three darts.
输入格式
The input consists of:
- One line containing an integer (), the number of balloons.
- lines, each containing two integers and (), the coordinates of a balloon.
It is guaranteed that no two balloons are at the same location.
输出格式
Output "" if three darts are sufficient to pop all balloons and "" otherwise.
6
0 0
1 1
2 4
3 9
4 16
5 25
possible
7
0 0
1 1
2 4
3 9
4 16
5 25
6 36
impossible
7
-1 -1
0 0
1 1
2 4
3 9
4 16
5 25
possible