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

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

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
Submit     

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
 
先对面积排个序 有助于降低运算次数;
1 #include
2 #include
3 #include
4 using namespace std; 5 struct Node{ 6 int l; 7 int w; 8 int h; 9 int s;10 };11 12 bool cmp(Node a,Node b)13 {14 return a.s>b.s;15 }16 17 int main()18 {19 int n,i,j,k,x,y,z,nu;20 Node in[99];21 int dp[500];22 nu=1;23 while(scanf("%d",&n)!=EOF && n!=0)24 {25 k=0;26 memset(dp,0,sizeof(dp));27 for(i=1;i<=n;i++)28 {29 scanf("%d %d %d",&x,&y,&z);30 k++;31 in[k].l=x ,in[k].w=y ,in[k].h=z ,in[k].s=x*y;32 k++;33 in[k].l=y ,in[k].w=z ,in[k].h=x ,in[k].s=y*z;34 k++;35 in[k].l=z ,in[k].w=x ,in[k].h=y ,in[k].s=x*z;36 }37 sort(in+1,in+k+1,cmp);38 dp[1]=in[1].h;39 for(i=2;i<=k;i++)40 {41 dp[i]=in[i].h;42 for(j=1;j
dp[i])47 dp[i]=dp[j]+in[i].h;48 }49 }50 }51 int ma=0;52 for(i=1;i<=k;i++)53 if(dp[i]>ma)54 ma=dp[i];55 printf("Case %d: maximum height = %d\n",nu,ma);56 nu++;57 }58 return 0;59 }
View Code

 

 

转载于:https://www.cnblogs.com/cyd308/p/4508590.html

你可能感兴趣的文章
我的Android进阶之旅------&gt;Android关于dp(dip)、sp转px的工具类
查看>>
[Phoenix] 二、数据类型
查看>>
第三届中国互联网安全领袖峰会:聚焦新秩序下网络安全之道
查看>>
pthread_rwlock_t读写锁函数说明
查看>>
股市猜测6个历史和未来的最高最低点位
查看>>
判断输入年份是否为闰年的另一种方法
查看>>
使用TT模板+mvc+wcf实现简单查询
查看>>
linux 内核驱动编程 简单例子 与_IO, _IOR, _IOW, _IOWR 宏解析
查看>>
Kubernetes持续部署Docker Apps
查看>>
2016年年终CSDN博客总结
查看>>
IDC:中国云计算市场超10亿 企业云火热
查看>>
shipyard, swarm看到你,我才睡觉:)
查看>>
定时删除过期数据
查看>>
打通数据壁垒 聚焦企业核心数据
查看>>
SDK Manager更新慢解决办法
查看>>
一篇文章纵览阿里云移动云Apsara Mobile产品系
查看>>
使用SkinMagic美化VC界面
查看>>
九大ICT企业年中业绩大比拼
查看>>
GTS全局事务测试-单DRDS跨库事务
查看>>
看完这篇文章,你们都想去GitHub上班了吧
查看>>