hdu 4296 Building

题目:http://acm.hdu.edu.cn/showproblem.php?pid=4296

对于相邻放置的两块板,设两块板为i,j他们上面的重量为sum, a=sum-si;b=sum+wi-sj;交换两个板的位置

a'=sum+wj-si;b'=sum-sj;如果前者优于后者,因为所求的是所有层的最大PDV,使之最小,所以求解得有效的条件为wj-si>wi-sj。

因而按si+wi的和排序贪心即可。

 

#include<algorithm>
#include<string.h>
#include<iostream>
using namespace std ;
typedef __int64 ll;
const int maxn = 100005;
struct node{
   int s,w;
   friend bool operator<(const node a,const node b){
       if(a.s+a.w == b.s+b.w)
          return a.s> b.s;
       return a.s + a.w <b.s+b.w;
   }
}node[maxn];
int main(){
   int n;
   ll max;
   while(~scanf("%d",&n)){
       max=0;
       for(inti = 0;i <n;i++)
          scanf("%d%d",&node[i].w,&node[i].s);
       sort(node,node+n);
       ll w = node[0].w;
       for(inti = 1;i <n;i++){
          // printf("%d%d\n",node[i].s,node[i].w);
          if((w-node[i].s) > max)
              max =(w-node[i].s);
          w+=node[i].w;
       }
       printf("%I64d\n",max);
   }
   return 0 ;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值