题目描述

Farmer John and his herd are playing frisbee. Bessie throws the

frisbee down the field, but it's going straight to Mark the field hand

on the other team! Mark has height H (1 <= H <= 1,000,000,000), but

there are N cows on Bessie's team gathered around Mark (2 <= N <= 20).

They can only catch the frisbee if they can stack up to be at least as

high as Mark. Each of the N cows has a height, weight, and strength.

A cow's strength indicates the maximum amount of total weight of the

cows that can be stacked above her.

Given these constraints, Bessie wants to know if it is possible for

her team to build a tall enough stack to catch the frisbee, and if so,

what is the maximum safety factor of such a stack. The safety factor

of a stack is the amount of weight that can be added to the top of the

stack without exceeding any cow's strength.

FJ将飞盘抛向身高为H(1 <= H <= 1,000,000,000)的Mark,但是Mark

被N(2 <= N <= 20)头牛包围。牛们可以叠成一个牛塔,如果叠好后的高度大于或者等于Mark的高度,那牛们将抢到飞盘。

每头牛都一个身高,体重和耐力值三个指标。耐力指的是一头牛最大能承受的叠在他上方的牛的重量和。请计算牛们是否能够抢到飞盘。若是可以,请计算牛塔的最大稳定强度,稳定强度是指,在每头牛的耐力都可以承受的前提下,还能够在牛塔最上方添加的最大重量。

输入输出格式

输入格式:

INPUT: (file guard.in)

The first line of input contains N and H.

The next N lines of input each describe a cow, giving its height,

weight, and strength. All are positive integers at most 1 billion.

输出格式:

OUTPUT: (file guard.out)

If Bessie's team can build a stack tall enough to catch the frisbee, please output the maximum achievable safety factor for such a stack.

Otherwise output "Mark is too tall" (without the quotes).

输入输出样例

输入样例#1:

4 10
9 4 1
3 3 5
5 5 10
4 4 5
输出样例#1:

2 

解法:状压dp

 #include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int n,m,h[],w[],v[],f[(<<)+],g[(<<)+];
//h,w,v分别为牛的身高,体重以及最大的承受重量;
//f表示在当前状态下的最大的负重,g表示在当前状态下的重量;
int b[],ans=-;
//b表示1<<(i-1);ans表示最大值;
int main()
{b[]=;
for(int i=;i<=;i++) b[i]=b[i-]<<;//预处理
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++) scanf("%d%d%d",&h[i],&w[i],&v[i]);
int maxx=(<<n)-;
for(int i=;i<=maxx;i++) f[i]=-;
f[]=0x7fffffff;
memset(g,,sizeof(g));
/*下面的动规是从前一个状态向后一个状态推的,
由样例可知:我们几乎无法在当前状态下运用前一个的状态的值,
因为根本无法用方程计算出何时负重量会更新(并不是只依赖于最下面的牛的负重,
如果中间的牛承受不住上面的牛的重量,那么依然不可能成立)
所以我们只能固定当前的状态,枚举接下来的可以放的牛的状态。*/
for(int x=;x<=maxx;x++)
for(int i=;i<=n;i++)
{
if((x&b[i]))continue;
int t=x|b[i];
if(f[x]<w[i])continue;
int tt=min(f[x]-w[i],v[i]);//如果最下面的是负载重量100,向上放一个负载重为1的牛,那么就不能选择前面一个决策,否则会出现状态上的错误。
f[t]=max(f[t],tt); //求出f[t];
g[t]=g[x]+h[i];//求出高度,减少运算量
if(g[t]>=m)ans=max(ans,f[t]);
}
if(ans<)printf("Mark is too tall");
else
printf("%d",ans);
return ;
}

仔细想想,许多方程基本上都能反过来写;如P3118即可。只要勤于思考,应该就能想出来一种吧。。。

最新文章

  1. 【BZOJ-2119】股市的预测 后缀数组
  2. mydumper 快速高效备份mysql,按照表生成备份文件,快速恢复
  3. Android应用开发基础之十一:新特性
  4. POJ3321 Apple Tree(树状数组)
  5. Linux分区介绍
  6. jQuery triger与trigerHandler的区别
  7. Gitlab的develop角色的人没有权限无法提交的问题解决方案
  8. AS:加载新版本的SWF文件。
  9. **使用 Git Hook 实现网站的自动部署
  10. 【转】This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in
  11. MyEclipse SVN 插件
  12. 深入解析Java中volatile关键字的作用
  13. QML添加右键菜单
  14. Factorization Machines 学习笔记(四)学习算法
  15. java--方法重写与重载
  16. Gradle 1.12用户指南翻译——第三十六章. Sonar Runner 插件
  17. objective-c中所谓的僵尸对象
  18. bzoj1497 最小割
  19. Dubbo原理和源码解析之“微内核+插件”机制
  20. [C#]画图全攻略(饼图与柱状图)(转)

热门文章

  1. snmp安装zabbix
  2. 以Linux下的测试程序说明递归型互斥量和普通互斥量的区别
  3. git log 中文乱码的解决方案
  4. 利用反射及ActionFilterAttribute实现MVC权限管理
  5. Nginx RTMP 模块 nginx-rtmp-module 指令详解
  6. 【转】利用 Apache JMeter 测试 WebSphere 性能
  7. 007:MySQL SSL
  8. 异步编程之co——源码分析
  9. 说说JDK中的String.valueOf()传null的诡异处理
  10. F5负载均衡架构图