这应该算是个难题,难点在于如何处理判断能否在规定时间完成任务。
思路是设的速度当作一个剩余值res,当res为0时,代表现在当前时间的已经没有处理任务能力了,然后枚举结束时间,如果从优先队列从跳出来的node结束时间小于当前枚举的时间,代表着在那个结束时间内,无法处理完成这个任务,直接范围false,如果最后能完成枚举结束时间的for循环,那么只要判断所有任务都处理完了,并且队列里没有元素了,那么则代表当前的速度是可行的。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn=10000+10;
int n,maxt=0;
struct node{
int r,d,w;
bool operator < (const node &rhs) const {
return d>rhs.d;
}
}a[maxn];
int cmp(node a,node b)
{
return a.r<b.r||(a.r==b.r&&a.d<b.d);
}
bool check(int mid)
{
priority_queue<node> pq;
int cnt=0;
for(int i=1;i<=maxt;i++)
{
while(a[cnt].r<i&&cnt<n) pq.push(a[cnt++]);
int res=mid;
while(res!=0&&!pq.empty())
{
node u=pq.top();pq.pop();
if(u.d<i) return false;
if(u.w>res)
{
u.w-=res;
res=0;
pq.push(u);
}
else res-=u.w;
}
}
if(cnt==n&&pq.empty()) return true;
else return false;
}
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
maxt=0;
scanf("%d",&n);
for(int i=0;i<n;i++) {scanf("%d%d%d",&a[i].r,&a[i].d,&a[i].w);maxt=max(maxt,a[i].d);}
sort(a,a+n,cmp);
int l=1,r=5000,mid;
while(l<r)
{
mid=(l+r)/2;
if(check(mid)) r=mid;
else l=mid+1;
}
printf("%d\n",l);
}
return 0;
}