codeforces 523D 优先队列

题意:

        给你N个任务单和k个机器,每个任务单有两个变量开始的时间,完成所需要的时间,问你最优去做的话,每个订单的结束时间是?

题解:

         题目保证了数据是递增排序的,那么我们就不用sort了,直接做。然后这里有个小套路:因为题目可以有k个机器,那我们可以先用k个0进去一个优先队列以达到模拟k个优先队列的作用,然后计算他们的完成时间,再放回去优先队列。这道题就做完了。

 

#include
#include
#include
#include
using namespace std;
#define LL long long int
const int MAXN=5e5+7;
priority_queue,greater >q;
int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    for(int i=1;i<=k;i++)
        q.push(0);
    LL x,y;
    for(int i=1;i<=n;i++)
    {
        scanf("%lld%lld",&x,&y);
        x=max(x,q.top())+y;
        printf("%lld\n",x);
        q.pop();
        q.push(x);
    }
}

 

你可能感兴趣的:(codeforces)