Codeforces 1249 D2. Too Many Segments (hard version)

Posted lltyyc

tags:

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

传送门

贪心

对于第一个不合法的位置,我们显然要通过删除几个覆盖了它的区间来使这个位置合法

显然删右端点更靠右的区间是更优的,所以就考虑优先删右端点靠右的,然后再考虑下一个不合法位置

用一个 $set$ 维护一下右端点和区间编号即可

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<vector>
#include<set>
using namespace std;
typedef long long ll;
inline int read()
{
    int x=0,f=1; char ch=getchar();
    while(ch<0||ch>9) { if(ch==-) f=-1; ch=getchar(); }
    while(ch>=0&&ch<=9) { x=(x<<1)+(x<<3)+(ch^48); ch=getchar(); }
    return x*f;
}
const int N=2e5+7;
int n,m;
struct dat {
    int r,id;
    dat (int _r=0,int _id=0) { r=_r,id=_id; }
    inline bool operator < (const dat &tmp) const {
        return r!=tmp.r ? r<tmp.r : id<tmp.id;
    }
};
vector <dat> V[N];
vector <int> mov;
set <dat> S;
int main()
{
    n=read(),m=read(); int a,b,mx=0;
    for(int i=1;i<=n;i++)
        a=read(),b=read(),
        mx=max(mx,b),
        V[a].push_back(dat(b,i));
    int ans=0;
    for(int i=1;i<=mx;i++)
    {
        while(S.size()&&(*S.begin()).r<i) S.erase(S.begin());
        for(auto x: V[i]) S.insert(dat(x.r,x.id));
        while(S.size()>m)
        {
            auto p=S.rbegin();
            ans++,mov.push_back((*p).id);
            S.erase(*p);
        }
    }
    printf("%d
",ans);
    for(auto x: mov) printf("%d ",x); puts("");
    return 0;
}

 

以上是关于Codeforces 1249 D2. Too Many Segments (hard version)的主要内容,如果未能解决你的问题,请参考以下文章

CF 1249D1 - Too Many Segments (easy version) 贪心+排序+set的使用

code forces1249D Too Many Segments

codeforces - 1249B2 Books Exchange (hard version)

codeforces1249-div3

题解Codeforces Round #595 (Div. 3)(CF1249)

Codeforces 1249 F. Maximum Weight Subset