Hello 2018 D. Too Easy Problems(树状数组+优先队列+贪心)

题目链接
在这里插入图片描述
在这里插入图片描述
思路:按a值进行排序,如果发现当前时间和大于T了,就优先删除t值较大的。

#include<bits/stdc++.h> 
using namespace std;
const int maxn =2e5+1;
#define lowbit(i) (i)&(-i) 
typedef long long ll;
struct cxk{
	int a,t,id;
	friend bool operator<(cxk x,cxk y)
	{
		return x.t<y.t;
	}
}s[maxn];
ll ans=0,T,c[maxn],sum;
priority_queue<cxk>q;
bool cmp(const cxk &a,const cxk &b)
{
	return a.a>b.a;
}
void update(int x,int v)
{
	while(x<maxn) c[x]+=v,x+=lowbit(x);
}
ll query(int x)
{
	ll res=0;
	while(x>0) res+=c[x],x-=lowbit(x);
	return res;
}
int main()
{
	int n;
	scanf("%d%lld",&n,&T);
	for(int i=1;i<=n;++i)
	scanf("%d %d",&s[i].a,&s[i].t),s[i].id=i;
	sort(s+1,s+1+n,cmp);
	for(int i=1;i<=n;++i)
	{
		sum+=s[i].t;
		update(s[i].a,1);
		q.push(s[i]);
		while(!q.empty()&&sum>T) sum-=q.top().t,update(q.top().a,-1),q.pop();
		int size=q.size();
		ans=max(ans,query(n)-query(size-1));
	}
	printf("%lld\n",ans);
	memset(c,0,sizeof(c));
	while(!q.empty()) q.pop();
	sum=0;
	for(int i=1;i<=n;++i)
	{
		sum+=s[i].t;
		update(s[i].a,1);
		q.push(s[i]);
		while(!q.empty()&&sum>T) sum-=q.top().t,update(q.top().a,-1),q.pop();
		int size=q.size();
		if(ans==query(n)-query(size-1))
		{
			printf("%d\n",q.size());
			while(!q.empty()) printf("%d ",q.top().id),q.pop();
			return 0;
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值