Weights and Measures - UVa 10154 dp

Problem F: Weights and Measures

I know, up on top you are seeing great sights, 
But down at the bottom, we, too, should have rights. 
We turtles can't stand it. Our shells will all crack! 
Besides, we need food. We are starving!" groaned Mack.

The Problem

Mack, in an effort to avoid being cracked, has enlisted your advice as to the order in which turtles should be dispatched to form Yertle's throne. Each of the five thousand, six hundred and seven turtles ordered by Yertle has a different weight and strength. Your task is to build the largest stack of turtles possible.

Standard input consists of several lines, each containing a pair of integers separated by one or more space characters, specifying the weight and strength of a turtle. The weight of the turtle is in grams. The strength, also in grams, is the turtle's overall carrying capacity, including its own weight. That is, a turtle weighing 300g with a strength of 1000g could carry 700g of turtles on its back. There are at most 5,607 turtles.

Your output is a single integer indicating the maximum number of turtles that can be stacked without exceeding the strength of any one.

Sample Input

300 1000
1000 1200
200 600
100 101

Sample Output

3

题意:每只乌龟有重量和承受力,每只乌龟上面的重量加上自身的重量不能超过他的承受力,问最多能叠多少只乌龟。

思路:每只乌龟先按承受力排序从小到大,承受力相同时按重量从小到大排序,然后dp[i]表示叠i只乌龟时的最小重量。

AC代码如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
struct node
{ ll w,s;
}box[6010];
ll dp[6010];
bool cmp(node a,node b)
{ if(a.s==b.s)
   return a.w<b.w;
  return a.s<b.s;
}
int main()
{ int n=1,i,j,k,len=1;
  while(~scanf("%lld%lld",&box[n].w,&box[n].s))
  { if(box[n].s<box[n].w)
     continue;
    n++;
  }
  n--;
  sort(box+1,box+1+n,cmp);
  dp[1]=box[1].w;
  for(i=2;i<=n;i++)
  { if(dp[len]<=box[i].s-box[i].w)
     dp[++len]=dp[len-1]+box[i].w;
    for(j=len-1;j>=0;j--)
     if(dp[j]<=box[i].s-box[i].w)
      dp[j+1]=min(dp[j+1],dp[j]+box[i].w);
  }
  if(n==0)
   printf("0\n");
  else
  printf("%d\n",len);
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值