CF242B.Big Segment

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Big Segment

A coordinate line has n segments, the i-th segment starts at the position l**i and ends at the position r**i. We will denote such a segment as [l**i, r**i].

You have suggested that one of the defined segments covers all others. In other words, there is such segment in the given set, which contains all other ones. Now you want to test your assumption. Find in the given set the segment which covers all other segments, and print its number. If such a segment doesn't exist, print -1.

Formally we will assume that segment [a, b] covers segment [c, d], if they meet this condition a ≤ c ≤ d ≤ b.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of segments. Next n lines contain the descriptions of the segments. The i-th line contains two space-separated integers l**i, r**i (1 ≤ l**i ≤ r**i ≤ 109) — the borders of the i-th segment.

It is guaranteed that no two segments coincide.

Output

Print a single integer — the number of the segment that covers all other segments in the set. If there's no solution, print -1.

The segments are numbered starting from 1 in the order in which they appear in the input.

Samples

3
1 1
2 2
3 3
-1
6
1 5
2 3
1 10
7 10
7 7
10 10
3

在线编程 IDE

建议全屏模式获得最佳体验