题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1069

Monkey and Banana

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 18739    Accepted Submission(s): 9967

Problem Description
A group of researchers are designing an experiment to test the IQ of a monkey. They will hang a banana at the roof of a building, and at the mean time, provide the monkey with some blocks. If the monkey is clever enough, it shall be able to reach the banana by placing one block on the top another to build a tower and climb up to get its favorite food.

The researchers have n types of blocks, and an unlimited supply of blocks of each type. Each type-i block was a rectangular solid with linear dimensions (xi, yi, zi). A block could be reoriented so that any two of its three dimensions determined the dimensions of the base and the other dimension was the height.

They want to make sure that the tallest tower possible by stacking blocks can reach the roof. The problem is that, in building a tower, one block could only be placed on top of another block as long as the two base dimensions of the upper block were both strictly smaller than the corresponding base dimensions of the lower block because there has to be some space for the monkey to step on. This meant, for example, that blocks oriented to have equal-sized bases couldn't be stacked.

Your job is to write a program that determines the height of the tallest tower the monkey can build with a given set of blocks.

 
Input
The input file will contain one or more test cases. The first line of each test case contains an integer n,
representing the number of different blocks in the following data set. The maximum value for n is 30.
Each of the next n lines contains three integers representing the values xi, yi and zi.
Input is terminated by a value of zero (0) for n.
 
Output
For each test case, print one line containing the case number (they are numbered sequentially starting from 1) and the height of the tallest possible tower in the format "Case case: maximum height = height".
 
Sample Input
1
10 20 30
2
6 8 10
5 5 5
7
1 1 1
2 2 2
3 3 3
4 4 4
5 5 5
6 6 6
7 7 7
5
31 41 59
26 53 58
97 93 23
84 62 64
33 83 27
0
 
Sample Output
Case 1: maximum height = 40
Case 2: maximum height = 21
Case 3: maximum height = 28
Case 4: maximum height = 342
 
Source
题目大意:
研究人员为了研究猴子的IQ,把香蕉挂屋顶,然后准备了N个方块(每个方块随便你用多少个)猴子利用这些方块达成塔就能吃到香蕉。但是猴子要爬上塔肯定是要能有地方落脚的。所以2个方块在叠加的时候,下面的那块的长宽都必须严格大于上面一块,否则猴子没地方落脚爬不上去;
现在研究人员怕香蕉挂太高,搞得猴子吃不到。问你最高能搭成多少高。这样他们好确定香蕉的位置。

搭积木规则:
x要能搭在y积木上,要求x的底部面积小于y的底部面积(不能等于,只有小于 ,猴子才有落脚的地方)
分析:
1.每个积木有六个面,都可以当作底面,所以一个积木有6种不同的放法,我们把每种方法看成一个“积木”,由于严格的要求长宽必须要小于下面的那块木块,所以可以推出,一个木块(指的是分解完的木块)至多只能被用一次。因为长宽相同的木块不能叠加。
2.LIS问题,先按照底部面积排序,然后将高度做权值按照LIS问题的方法处理
 
状态转移:

dp[x]表示用上第x块木块时能搭的最高高度。

dp[i] = max(dp[i],dp[j]+a[i].z); j ∈[0,i-1];

边界条件(初始化):dp[i] = a[i].z (因为每个方块最优解至少比他自身的高度要高)

记得在状态转移前要加上条件(if(a[j].x > a[i].x && a[j].y > a[i].y))

#include<bits/stdc++.h>
using namespace std;
#define max_v 185
struct node
{
int x,y,z;
};
bool cmp(node a,node b)
{
return a.x*a.y>b.x*b.y;
}
struct node a[max_v];
int dp[max_v];
int main()
{
int c=,n;
while(~ scanf("%d",&n))
{
if(n==)
break;
for(int i=; i<*n;)
{
int x,y,z;
scanf("%d %d %d",&x,&y,&z);
a[i].x=x,a[i].y=y,a[i].z=z;
i++;
a[i].x=x,a[i].y=z,a[i].z=y;
i++;
a[i].x=y,a[i].y=x,a[i].z=z;
i++;
a[i].x=y,a[i].y=z,a[i].z=x;
i++;
a[i].x=z,a[i].y=y,a[i].z=x;
i++;
a[i].x=z,a[i].y=x,a[i].z=y;
i++;
}
sort(a,a+*n,cmp);
dp[]=a[].z;
//dp[i] 表示用上第i给木块能达到的最大高度
for(int i=; i<*n; i++)
{
dp[i]=a[i].z;
for(int j=; j<i; j++)
{
if(a[i].x<a[j].x&&a[i].y<a[j].y)
{
dp[i]=max(dp[i],dp[j]+a[i].z);
}
}
}
int t=;
for(int i=; i<*n; i++)
{
if(t<dp[i])
{
t=dp[i];
}
}
printf("Case %d: maximum height = %d\n",++c,t);
}
}

HDU 1069 Monkey and Banana(转换成LIS,做法很值得学习)的更多相关文章

  1. HDU 1069 Monkey and Banana / ZOJ 1093 Monkey and Banana (最长路径)

    HDU 1069 Monkey and Banana / ZOJ 1093 Monkey and Banana (最长路径) Description A group of researchers ar ...

  2. HDU 1069 Monkey and Banana dp 题解

    HDU 1069 Monkey and Banana 纵有疾风起 题目大意 一堆科学家研究猩猩的智商,给他M种长方体,每种N个.然后,将一个香蕉挂在屋顶,让猩猩通过 叠长方体来够到香蕉. 现在给你M种 ...

  3. HDU 1069 Monkey and Banana(二维偏序LIS的应用)

    ---恢复内容开始--- Monkey and Banana Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K ...

  4. HDU 1069 monkey an banana DP LIS

    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64uDescription 一组研究人员正在 ...

  5. HDU 1069 Monkey and Banana (DP)

    Monkey and Banana Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u S ...

  6. HDU 1069—— Monkey and Banana——————【dp】

    Monkey and Banana Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u S ...

  7. HDU 1069 Monkey and Banana (动态规划、上升子序列最大和)

    Monkey and Banana Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others ...

  8. HDU 1069 Monkey and Banana 基础DP

    题目链接:Monkey and Banana 大意:给出n种箱子的长宽高.每种不限个数.可以堆叠.询问可以达到的最高高度是多少. 要求两个箱子堆叠的时候叠加的面.上面的面的两维长度都严格小于下面的. ...

  9. hdu 1069 Monkey and Banana

    Monkey and Banana Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others ...

随机推荐

  1. jquery怎么取得有好几个并且name是相同的值

    jQuery("input[name='number']").each(function(){ alert(jQuery(this).val()); });

  2. ES6学习笔记(七)-对象扩展

    可直接访问有道云笔记分享链接查看es6所有学习笔记 http://note.youdao.com/noteshare?id=b24b739560e864d40ffaab4af790f885

  3. DOM基础操作(三)

    DOM剩余的两个操作一并带来! 1.删除操作 removeChild 这个方法依然是父级调用的,参数就是要删除的子节点,其实实际上是剪切,这个方法会把我们删除掉的元素给返回,我们可以用一个变量去保存这 ...

  4. git杂记-打标签

    列出标签 $ git tag v0. v1. 创建标签 --添加附注标签(推荐):加上-a选项(annotated) $ git tag -a v1. -m 'my version 1.4' --添加 ...

  5. 爬虫必备—BeautifulSoup

    BeautifulSoup是一个模块,该模块用于接收一个HTML或XML字符串,然后将其进行格式化,之后便可以使用他提供的方法进行快速查找指定元素,从而使得在HTML或XML中查找指定元素变得简单. ...

  6. Codeforces Round #419 A+B

    A. Karen and Morning time limit per test  2 seconds memory limit per test  512 megabytes   Karen is ...

  7. 软工读书笔记 week3 (《黑客与画家》上)

    一.何谓黑客? 黑客,在我们大多数普通人眼里,就是入侵计算机的人,通常还与干坏事挂钩.而书中告诉我们,这 并不是它的真正含义.而要想理解这本书,就要首先理解什么是黑客. 黑客这个词最初起源时,完全是一 ...

  8. org.springframework.data.mongodb.core.MongoTemplate]: Constructor threw exception; nested exception is java.lang.NoSuchMethodError: org.springframework.core.convert.support.ConversionServiceFactory.cr

    spring-data-mongo 和spring core包冲突.解决办法: <dependency> <groupId>org.springframework.data&l ...

  9. java多线程处理问题

    今天碰到个以前的线上bug需要处理下:问题是这样的,我们的app里面有个点赞的功能,点赞完后显示点赞人列表以及点赞数量,但是数量现在总是不准确.之后查看代码,发现点赞时候只是简单的向数据库添加了一条点 ...

  10. 使用wm_concat函数导致字符串过长

    场景:使用select wm_concat(xxxxx) from table 的时候 返回的字符串过长 解决方案 :使用to_clob 将字符串转成 clob类型,但是由于使用的前端框架不能解析cl ...