Hide

Problem G
Tracing (Laser) Pointers

Can you help me? There are pointers pointing everywhere! I’ve spilled all my laser pointers onto a 2D plane. Even worse, they’re all still turned on! At least this gives us a fun order in which to pick them up! I’d prefer if we grabbed all my pointers in ascending order of where their laser beam contacts the $x$-axis. If their laser doesn’t shine across the $x$-axis, then it’s not worth grabbing, and do not include it in the list. It belongs on the ground!

Each laser pointer has a name, and I’ll make sure to give you where the laser pointer is, as well as the slope of the line of the direction in which it’s pointing. I’ve never bought the same laser pointer twice, so the names are all unique. Just give me the list of names in the right order, and I’ll pick them up!

Don’t worry, we got lucky, and all laser pointers are pointing towards positive infinity on the $x$-axis, and they’re all at least $1$ away from the $x$-axis. I did a quick scan of all the pointers, and if a laser pointer was ever going to shine on the $x$-axis, then it’ll do it by at most $x = 100000000$. Also, the gap between where two different laser pointers hit the $x$-axis is always at least $0.00001$. Whew! Imagine how annoying it would have been otherwise!

\includegraphics[width=0.45\textwidth ]{figure.pdf}
Figure 1: Illustration of the 3rd sample input and output. Lasers B,C,A,E intersect the $x$-axis in that order. Laser E does not intersect the $x$ axis.

Input

The first line of input contains an integer $N$ ($1 \leq N \leq 10^5$). Then $N$ lines follow, each containing three real numbers $x, y, m$, with $0 \leq |x| \leq 10000$, $1 \leq |y| \leq 10000$, and $0 \leq |m| \leq 10000$ and then the name of the laser pointer. Here, $(x, y)$ indicates the coordinates of the origin of the laser pointer, and $m$ indicates the slope. All real numbers are given with exactly $6$ digits of precision after the decimal. Each name is alphanumeric, contains no whitespace, is non-empty, and has at most $100$ characters. At least one laser pointer is pointing towards the $x$-axis.

Output

Return the list of names of laser pointers that hit the $x$-axis, in ascending order of where they hit the $x$-axis. Each name should be on a separate line, with no leading or trailing spaces.

Sample Input 1 Sample Output 1
2
1.000000 3.000000 -0.500000 UberPointerX3000
2.000000 -4.000000 2.000000 SigmaLaserMarkIIOopsWeMeantMark2
SigmaLaserMarkIIOopsWeMeantMark2
UberPointerX3000
Sample Input 2 Sample Output 2
3
-1.000000 5.000000 -5.000000 LegendaryPremiumUltraSuperLaser
-2.000000 10.000000 -1.000000 LongRangeDeluxeClassyLaser
-3.000000 15.000000 1.000000 HonestlyJustABoringAndCheapLaserPointerNotReallyWorthPickingUp
LegendaryPremiumUltraSuperLaser
LongRangeDeluxeClassyLaser
Sample Input 3 Sample Output 3
5
2.000000 6.000000 -0.600000 A
3.000000 -4.000000 3.000000 B
11.000000 -1.000000 2.000000 C
7.000000 9.000000 0.100000 D
15.000000 8.000000 -4.500000 E
B
C
A
E

Please log in to submit a solution to this problem

Log in