AcWing 907. 区间覆盖 贪心

Posted karshey

tags:

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

一道简单的区间贪心。
有很多细节,比如在循环中的now已经大于右端点就直接break…等。
排序排l。注意可能有死循环的情况(但凡发现停滞不前:temp==now就要break输出-1了)。

太久不写代码会变笨,比如wa一发,segament fault一发,T一发,再不过直接子鲨

#include<bits/stdc++.h>
using namespace std;
#define fir(i,a,n) for(int i=a;i<=n;i++)
const int N=1e5+20;
struct node
{
	int a,b;
}a[N];
int n;
int l,r;
bool cmp(node a,node b)
{
	return a.a<b.a;//排l 
}
int main()
{
	cin>>l>>r;
	cin>>n;
	fir(i,1,n)
	{
		int aa,bb;cin>>aa>>bb;
		a[i]={aa,bb};
	}
	sort(a+1,a+1+n,cmp);
	if(a[1].a>l)
	{
		cout<<"-1";return 0;
	}
	int ans=0;
	int now=-0x3f3f3f3f;
	int flag=0;
	//找第一个 
	for(int i=1;i<=n;i++)
	{
		if(a[i].a<=l) 
		{
			now=max(now,a[i].b);
		}
		else 
		{
			flag=i;break;
		}
	}
	//cout<<now<<endl;
	ans++;
	
	int temp=-0x3f3f3f3f;
	int tempp=0;
	for(int i=flag;i<=n;)
	{
		if(a[i].a<=now) 
		{
			temp=max(temp,a[i].b);i++;tempp++;
		}
		else
		{
			ans++;
			if(now!=temp)now=temp;
			else break;
			tempp=0;
		}
		if(now>=r) break;
	} 
	if(tempp) now=temp,ans++;
	//cout<<now<<" "<<ans;
	if(now<r) cout<<-1;
	else cout<<ans;
	
	return 0; 
}

以上是关于AcWing 907. 区间覆盖 贪心的主要内容,如果未能解决你的问题,请参考以下文章

第六章 贪心 完结

ACM - 贪心(经典母题+POJ一些练习题)

ACM - 贪心(经典母题+POJ一些练习题)

ACM - 贪心(经典母题+POJ一些练习题)

ACM - 贪心(经典母题+POJ一些练习题)

AcWing 905. 区间选点(贪心)