首页 > 其他 > 详细

HDU 1896 Stones

时间:2016-04-30 22:11:36      阅读:273      评论:0      收藏:0      [点我收藏+]

  还是优先队列

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
using namespace std;
#define maxn 100010
struct Node
{
    int x,y,id;
    friend bool operator < (Node a,Node b)
    {
        if(a.x != b.x) return a.x > b.x;
        else if(a.y != b.y) return a.y > b.y;
        else return a.id < b.id;
    }
} node[maxn];
priority_queue<Node>que;
int main()
{
    int t,n;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        for(int i = 0; i < n; i++)
        {
            scanf("%d%d",&node[i].x,&node[i].y);
            node[i].id = i+1;
            que.push(node[i]);
        }
        int tot = 0,maxt = -9999;
        while(!que.empty())
        {
            tot++;
            Node tmp = que.top();
            que.pop();
            if(tot & 1 == 1)
            {
                Node next = tmp;
                next.x = tmp.x + tmp.y;
                if(next.x > maxt) maxt = next.x;
                que.push(next);
            }
        }
        printf("%d\n",maxt);
    }
    return 0;
}

 

HDU 1896 Stones

原文:http://www.cnblogs.com/jifahu/p/5449476.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!