Codeforces 976C

Posted 温和的提比略

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 976C相关的知识,希望对你有一定的参考价值。

题意略。

思路:由于题中只要让我们找出嵌套的段就行了,那么我们只需要排序一下就好了。

排序方式:按左端由小到大排,左端一样的时候,右端小的排在前。

 

 

如果你担心1会因为2的阻隔而不能嵌套3的话,那么2可以保证嵌套3。

#include<bits/stdc++.h>
#define maxn 300005
using namespace std;

struct edge{
    int l,r,id;
    edge(int a = 0,int b = 0,int c = 0){
        l = a,r = b,id = c;
    }
    bool operator<(const edge& e) const{
        if(l != e.l) return l < e.l;
        return r > e.r;
    }
};

edge store[maxn];
int n;

int main(){
    scanf("%d",&n);
    for(int i = 1;i <= n;++i){
        scanf("%d%d",&store[i].l,&store[i].r);
        store[i].id = i;
    }
    sort(store + 1,store + 1 + n);
    int ans1 = -1,ans2 = -1;
    for(int i = 1;i < n;++i){
        if(store[i].l <= store[i + 1].l && store[i].r >= store[i + 1].r){
            ans1 = store[i + 1].id,ans2 = store[i].id;
            break; 
        }
    }
    printf("%d %d\\n",ans1,ans2);
    return 0;
}

 

以上是关于Codeforces 976C的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)

CodeForces 931F Teodor is not a liar!

这个c代码有啥问题?