zoukankan      html  css  js  c++  java
  • Monkey and Banana

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

    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<stdio.h>
     2 #include<string.h>
     3 #include<algorithm>
     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<i;j++)
    43             {
    44                 if((in[i].l<in[j].l && in[i].w<in[j].w)||(in[i].w<in[j].l && in[i].l<in[j].w))
    45                 {
    46                     if(dp[j]+in[i].h>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
    ",nu,ma);
    56         nu++;
    57     }
    58     return 0;
    59 }
    View Code
     
  • 相关阅读:
    Firefly AIO-3399ProC开发板安装RKNN Toolkit 1.6.0开发环境
    用1kΩ电阻可以组合出多少个阻值?
    电气元件与电气控制的保护(PPT)
    MASM汇编DOS
    可免费解锁PDF的网站
    org.springframework.web.filter.CharacterEncodingFilter cannot be cast to javax.servlet.Filter和java.lang.LinkageError: loader constraint violation: loader (instance of org/apache/jasper/servlet/JasperL
    访问联合类型中某个类型特有的属性或方法
    防止攻击者篡改外部脚本
    对 state 中的数组使用 v-model
    TS 定义一个最简单的字符串数组类型
  • 原文地址:https://www.cnblogs.com/cyd308/p/4508590.html
Copyright © 2011-2022 走看看