BWIDOW - Black Widow Rings
Black Widow has a collection of N (numbered 1 to N) Rings. She uses the rings to attack the enemies. She has decided to use one ring for distraction. She will first throw the distraction ring and then all the other rings will be thrown through it (one at a time). Each ring has an inner and outer radius.
A ring R1 will pass through ring R2 only if the outer radius of R1 is less than the inner radius of R2.
If she can chose a distraction ring from the given collection print the index of the ring (1-based), else print -1.
Input
The first line of the input contains an integer T denoting the number of test cases.
The first line of each test case contains a single integer N denoting the number of Rings.
Next N lines consists of Inner and Outer Radius of the ith Ring - r, R.
- 1 ≤ T ≤ 100
- 2 ≤ N ≤ 1000
- 1 ≤ r < R ≤ 107
(Edited: r and R are integer)
Output
For each test case print the desired result in separate line.
Example
Input: 2 3 2 3 6 8 3 5 3 4 5 5 8 3 10 Output: 2 -1
hide comments
SangKuan:
2015-07-17 11:38:19
easy.got wa due to forget invoke the start function |
|
vasayashwanth:
2015-07-03 03:31:45
why no. of submissions is less for such an easy problem |
|
kp:
2015-06-30 09:58:43
easy........dont think much |
|
:.Mohib.::
2015-05-19 16:45:52
Easy.... O(N)
|
|
.::Austin::.:
2014-12-23 11:21:24
Easy :) |
|
:(){ :|: & };::
2014-12-09 16:54:56
O(N) is possible. |
|
Naivedya Bansal:
2014-12-06 18:13:28
each ring passes one by one through the same distraction ring right?? Last edit: 2014-12-06 18:15:32 |
|
RUDRA:
2014-11-05 15:38:08
@Rajat (1307086) ,No.
|
|
Ayush Garg:
2014-10-18 20:00:08
AC in 1st attempt... feeling good that accuracy is increasing in easy questions :) |
|
Rahul Jain:
2014-09-22 18:24:14
Easy one...AC in first go. :) |
Added by: | BLANKRK |
Date: | 2013-11-14 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Code Weavers 2013 |