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

Submit Status

Description

一组研究人员正在设计一项实验,以测试猴子的智商。他们将挂香蕉在建筑物的屋顶,同时,提供一些砖块给这些猴子。如果猴子足够聪明,它应当能够通过合理的放置一些砖块建立一个塔,并爬上去吃他们最喜欢的香蕉。
 
研究人员有n种类型的砖块,每种类型的砖块都有无限个。第i块砖块的长宽高分别用xi,yi,zi来表示。 同时,由于砖块是可以旋转的,每个砖块的3条边可以组成6种不同的长宽高。
 
在构建塔时,当且仅当A砖块的长和宽都分别小于B砖块的长和宽时,A砖块才能放到B砖块的上面,因为必须留有一些空间让猴子来踩。
 
你的任务是编写一个程序,计算猴子们最高可以堆出的砖块们的高度。

Input

输入文件包含多组测试数据。
每个测试用例的第一行包含一个整数n,代表不同种类的砖块数目。n<=30.
接下来n行,每行3个数,分别表示砖块的长宽高。
当n= 0的时候,无需输出任何答案,测试结束。

Output

对于每组测试数据,输出最大高度。格式:Case 第几组数据: maximum height = 最大高度

Sample Input

1
10 20 30 

6 8 10 
5 5 5 

1 1 1 
2 2 2 
3 3 3 
4 4 4 
5 5 5 
6 6 6 
7 7 7 

31 41 59 
26 53 58 
97 93 23 
84 62 64 
33 83 27 

Sample Output

Case 1: maximum height = 40
Case 2: maximum height = 21 
Case 3: maximum height = 28 
Case 4: maximum height = 342 
 
经典的动态规划题,这个其实可以看作LIS问题来看待,其实这道题虽然说有无限个砖块,可是他每种砖块转换成6种状态之后,每种状态只可能出现一次,因为还有长和宽的限制,因此可以把所有的砖块做成一个排列。还可以由LIS问题得到启发,得到这个问题的最优子结构,用h[i]表示以第i个砖块作为最上面一个砖块可以得到的最大距离,为了保证其最优性,状态转移方程为h[i]=max{h[j]+第i个砖块的高度,j<i},这个方程是因为事先经过排序,使得面积从大到小排,因此序号大于i的砖块不可能放在砖块i的下面,然后枚举n个砖块放在最上面,其中所能得到的最高高度就是答案
 

#include"iostream"
#include"algorithm"
#include"cstring"
#include"cstdio"
#define inf -1e9
using namespace std;
int n,ans,f,ff; struct node{
int x,y,z;
void getdata(int a,int b,int c)
{
x=a;y=b;z=c;
}
bool operator < (const node &a1) const
{
if(x!=a1.x) return x>a1.x;
return y>a1.y;
}
}a[]; int dp[]; void Init()
{
f=;int aa,bb,cc;
a[].x=a[].y=;
for(int i=;i<n;i++)
{
cin>>aa>>bb>>cc;
a[f++].getdata(aa,bb,cc);
a[f++].getdata(aa,cc,bb);
a[f++].getdata(cc,aa,bb);
a[f++].getdata(cc,bb,aa);
a[f++].getdata(bb,aa,cc);
a[f++].getdata(bb,cc,aa);
}
sort(a,a+f);
} bool isok(node a1,node a2)
{
if(a2.x>a1.x&&a2.y>a1.y) return true;
return false;
} void Work()
{
int MAX=inf;
memset(dp,,sizeof(int)*f);
for(int i=;i<f;i++)
{
for(int j=;j<=i;j++)
if(isok(a[i],a[j])&&dp[j]+a[i].z>dp[i])
dp[i]=dp[j]+a[i].z;
MAX=max(dp[i],MAX);
}
ans=MAX;
} void Print()
{
cout<<"Case "<<ff++<<": maximum height = "<<ans<<endl;
} int main()
{
ff=;
while(cin>>n&&n)
{
Init();
Work();
Print();
}
return ;
}

O(O_O)O


 
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=+;
struct node
{
int l,w,h;
void init(int a,int b,int c)
{
l=a;
w=b;
h=c;
}
}f[maxn];
int dp[maxn],e,ca=; bool cmp(node x1,node x2)
{
return x1.l*x1.w>x2.l*x2.w;
} void Work()
{
sort(f,f+e,cmp);
int maxx=-1e9;
for(int k=;k<e;k++)
{
memset(dp,,sizeof(dp));
dp[k]=f[k].h;
for(int i=;i<e;i++)
{
if(i==k) continue;
for(int j=;j<i;j++)
{
if(f[j].l>f[i].l&&f[j].w>f[i].w) dp[i]=max(dp[j]+f[i].h,dp[i]);
}
maxx=max(dp[i],maxx);
}
}
cout<<"Case "<<ca++<<": maximum height = "<<maxx<<endl;
} int main()
{
int n;
while(cin>>n&&n)
{
e=;
int a,b,c;
for(int i=;i<=n;i++)
{
cin>>a>>b>>c;
f[e++].init(a,b,c);
f[e++].init(a,c,b);
f[e++].init(b,a,c);
f[e++].init(b,c,a);
f[e++].init(c,a,b);
f[e++].init(c,b,a);
}
Work();
}
return ;
}


集训第五周 动态规划 B题LIS的更多相关文章

  1. 集训第五周动态规划 E题 LIS

    Description The world financial crisis is quite a subject. Some people are more relaxed while others ...

  2. 集训第五周动态规划 D题 LCS

    Description In a few months the European Currency Union will become a reality. However, to join the ...

  3. 集训第五周动态规划 C题 编辑距离

    Description Let x and y be two strings over some finite alphabet A. We would like to transform x int ...

  4. 集训第五周动态规划 I题 记忆化搜索

    Description Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激.可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你.Michael想知道 ...

  5. 集训第五周动态规划 H题 回文串统计

    Hrdv is interested in a string,especially the palindrome string.So he wants some palindrome string.A ...

  6. 集训第五周动态规划 G题 回文串

    Description A palindrome is a symmetrical string, that is, a string read identically from left to ri ...

  7. 集训第五周动态规划 F题 最大子矩阵和

    Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous s ...

  8. 集训第五周 动态规划 K题 背包

    K - 背包 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Statu ...

  9. 集训第五周动态规划 J题 括号匹配

    Description We give the following inductive definition of a “regular brackets” sequence: the empty s ...

随机推荐

  1. javascript匿名方法

    首先,看一段很有意思的代码: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> < ...

  2. 【转】Hive安装及使用攻略

    Posted: Jul 16, 2013 Tags: HadoophiveHiveQLsql分区表 Comments: 18 Comments Hive安装及使用攻略 让Hadoop跑在云端系列文章, ...

  3. LBP特征 学习笔记

    这几天一直在做人脸识别的项目,有用到LBP特征,但是毫无头绪,师姐这几天也比较忙,没有时间来指导我,随自己找相应的介绍LBP的博文来看,现在总算有了一个大体的思路了,就写下来吧 注:参考博文: 目标检 ...

  4. 题解报告:poj 2823 Sliding Window(单调队列)

    Description An array of size n ≤ 106 is given to you. There is a sliding window of size k which is m ...

  5. MFC显示文本文档 分类: MFC 2014-12-30 10:03 457人阅读 评论(1) 收藏

    新建基于对话框的MFC应用程序.资源视图的对话框上添加编辑框(Edit Control)和按钮(Button), 将编辑框属性:Mutiline.Auto HScroll.Auto VScroll设为 ...

  6. Styles and Themens(1)详述

    Styles and Themes IN THIS DOCUMENT Defining Styles Inheritance Style Properties Applying Styles and ...

  7. AngularJS入门 & 分页 & CRUD示例

    一.AngularJS 简介 ​ AngularJS  诞生于2009年,由Misko Hevery 等人创建,后为Google所收购.是一款优秀的前端JS框架,已经被用于Google的多款产品当中. ...

  8. hihocoder offer收割编程练习赛12 C 矩形分割

    思路: 模拟,深搜. 实现: #include <iostream> #include <cstdio> #include <string> using names ...

  9. leetcode_486. Predict the Winner

    https://leetcode.com/problems/predict-the-winner/ 题目描述:给定一个非负的积分数组,玩家1可以从数组两端任取一个积分,接着玩家2执行同样的操作,直至积 ...

  10. inux 软件编译、安装、删除

    640?wx_fmt=otherimage.png 本文学习内容 手动安装软件 手动安装下载源码的软件 源码编译3步骤 deb包-包依赖管理 dekg -l 查看所以安装deb的包 apt-get仓库 ...