Lara Croft and the New Game CodeForces - 976B 水题排序

You are given a sequence a1, a2, ..., an of one-dimensional segments numbered 1through n. Your task is to find two distinct indices i and j such that segment ailies within segment aj.

Segment [l1, r1] lies within segment [l2, r2] iff l1 ≥ l2 and r1 ≤ r2.

Print indices i and j. If there are multiple answers, print any of them. If no answer exists, print -1 -1.

Input

The first line contains one integer n (1 ≤ n ≤ 3·105) — the number of segments.

Each of the next n lines contains two integers li and ri (1 ≤ li ≤ ri ≤ 109) — the i-th segment.

Output

Print two distinct indices i and j such that segment ai lies within segment aj. If there are multiple answers, print any of them. If no answer exists, print -1 -1.

Examples

Input
5
1 10
2 9
3 9
2 3
2 9
Output
2 1
Input
3
1 5
2 6
6 20
Output
-1 -1

Note

In the first example the following pairs are considered correct:

  • (2, 1), (3, 1), (4, 1), (5, 1) — not even touching borders;
  • (3, 2), (4, 2), (3, 5), (4, 5) — touch one border;
  • (5, 2), (2, 5) — match exactly.

 

关于cmp的写法我博客有专门文章讲

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
#define LL long long int
const int N = 1e5 + 7;
const int MOD = 1e9+7;
struct point
{
    LL l,r,index;
    bool operator < (const point &tmp) const
    {
        return l == tmp.l ? r > tmp.r : l < tmp.l;
    }
} num[300004];

int main()
{
    LL n;
    cin>>n;
    for(LL i=0; i<n; i++)
    {
        scanf("%lld %lld",&num[i].l,&num[i].r);
        //cin>>num[i].l>>num[i].r;
        num[i].index = i + 1;
    }
    //cout<<"1"<<endl;
    sort(num,num+n);
    LL i1=-1,i2=-1;
    for(LL i=1; i<n; i++)
    {
        if(num[i-1].r >= num[i].r )
        {
            i1 = num[i-1].index;
            i2 = num[i].index;
            break;
        }
    }

    cout<<i2<<" "<<i1<<endl;

}

 

转载于:https://www.cnblogs.com/upstart/p/8982263.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值