博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1069:Monkey and Banana(DP)
阅读量:5745 次
发布时间:2019-06-18

本文共 3976 字,大约阅读时间需要 13 分钟。

Monkey and Banana

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 19928    Accepted Submission(s): 10609

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

110 20 3026 8 105 5 571 1 12 2 23 3 34 4 45 5 56 6 67 7 7531 41 5926 53 5897 93 2384 62 6433 83 270

Sample Output

Case 1: maximum height = 40Case 2: maximum height = 21Case 3: maximum height = 28Case 4: maximum height = 342

题意

有n种砖块,每种砖块的长宽高已知,每种砖块个数无限,选出一些砖块建塔,要求在下面砖块的长和宽大于上面砖块的长宽,在满足这个要求的情况下,塔的最大高度

思路

每次输入一种砖块的长宽高,把这种砖的摆放情况情况枚举出来,存到结构体中,然后dp就行了

AC代码

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long#define ms(a) memset(a,0,sizeof(a))#define pi acos(-1.0)#define INF 0x3f3f3f3fconst double E=exp(1);const int maxn=1e3+10;using namespace std;struct wzy{ int a,b,c;//长宽高 int dp;}p[maxn];bool cmp(wzy u,wzy v){ if(u.a==v.a) return u.b
>n&&n) { ms(p); int k=0; for(int i=0;i
>x>>y>>z; if(x==y) { if(x==z) { p[k].a=x;p[k].b=y;p[k].c=z;p[k].dp=p[k].c;k++; } else { p[k].a=x;p[k].b=y;p[k].c=z;p[k].dp=p[k].c;k++; p[k].a=x;p[k].b=z;p[k].c=y;p[k].dp=p[k].c;k++; p[k].a=z;p[k].b=x;p[k].c=y;p[k].dp=p[k].c;k++; } } else { if(y==z) { p[k].a=x;p[k].b=y;p[k].c=z;p[k].dp=p[k].c;k++; p[k].a=y;p[k].b=z;p[k].c=x;p[k].dp=p[k].c;k++; p[k].a=z;p[k].b=x;p[k].c=y;p[k].dp=p[k].c;k++; } else if(x==z) { p[k].a=x;p[k].b=y;p[k].c=z;p[k].dp=p[k].c;k++; p[k].a=x;p[k].b=z;p[k].c=y;p[k].dp=p[k].c;k++; p[k].a=y;p[k].b=x;p[k].c=z;p[k].dp=p[k].c;k++; } else { p[k].a=x;p[k].b=y;p[k].c=z;p[k].dp=p[k].c;k++; p[k].a=x;p[k].b=z;p[k].c=y;p[k].dp=p[k].c;k++; p[k].a=y;p[k].b=x;p[k].c=z;p[k].dp=p[k].c;k++; p[k].a=y;p[k].b=z;p[k].c=x;p[k].dp=p[k].c;k++; p[k].a=z;p[k].b=y;p[k].c=x;p[k].dp=p[k].c;k++; p[k].a=z;p[k].b=x;p[k].c=y;p[k].dp=p[k].c;k++; } } } sort(p,p+k,cmp); int ans=0; for(int i=1;i
p[j].a&&p[i].b>p[j].b) p[i].dp=max(p[i].dp,p[j].dp+p[i].c); } ans=max(ans,p[i].dp); } cout<<"Case "<<++t<<": maximum height = "; cout<
<

 

转载于:https://www.cnblogs.com/Friends-A/p/10324391.html

你可能感兴趣的文章
linux下使用过的命令总结(未整理完)
查看>>
时间助理 时之助
查看>>
英国征召前黑客组建“网络兵团”
查看>>
PHP 命令行模式实战之cli+mysql 模拟队列批量发送邮件(在Linux环境下PHP 异步执行脚本发送事件通知消息实际案例)...
查看>>
pyjamas build AJAX apps in Python (like Google did for Java)
查看>>
LAMP环境搭建1-mysql5.5
查看>>
centos5.9使用RPM包搭建lamp平台
查看>>
Javascript String类的属性及方法
查看>>
[LeetCode] Merge Intervals
查看>>
Struts2 学习小结
查看>>
测试工具综合
查看>>
【记录】JS toUpperCase toLowerCase 大写字母/小写字母转换
查看>>
在 Linux 系统中安装Load Generator ,并在windows 调用
查看>>
Visifire charts ToolBar
查看>>
Mysql查询
查看>>
数据传输流程和socket简单操作
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>