luogu P2161 [SHOI2009]会场预约

题目传送门:https://www.luogu.org/problemnew/show/P2161



题意:

有n个操作。

A操作有两个数x、y,询问x~y时间中与先前预约冲突的预约的个数,并拒绝这些预约;

B操作询问当前有效的预约个数。



思路:

然而不会(太弱~~~)。

怒翻题解:二分+set。

对于A操作:我们从0时间~x时间去二分寻找与当前预约冲突的预约,将其删除,记录一下即可。

对于B操作:直接输出当前set里的个数。

注意:要先按照右端点排序再按照左端点排序(降序),不然没法二分啊。



代码:

#include<cstdio>
#include<set>
#include<algorithm>
using namespace std;
struct node
{
	int x,y;
	node(int a=0,int b=0)
	{
		x=a,y=b;
	}
	friend bool operator <(node a,node b)
	{
		return a.y==b.y?a.x<b.x:a.y<b.y;
	}
};
set<node> a;
#define address set<node>::iterator
	int n;
int main()
{
	char s[5];
	int x,y;
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
	{
		scanf("%s",s+1);
		if(s[1]=='A')
		{
			int x,y,tot=0;
			scanf("%d %d",&x,&y);
			while(1)
			{
				address t=a.lower_bound(node(0,x));
				if(t->x<=y&&t!=a.end()) a.erase(t),tot++; else break;
			}
			a.insert(node(x,y));
			printf("%d\n",tot);
		}
		else printf("%d\n",a.size());
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值