hdu 1069 Monkey and Banana(最长递增子序列的变形)

题目链接:点击打开链接

思路:最长递增子序列的变形,由题意,对于每一个长方体的三种摆放,每个摆放最多出现一次,三个可同时出现,即原序列为n*3,把每个长方体的三种摆放均存起来,按照长和宽递增排序,转化为最长递增子序列。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
struct node{
	int x,y,z;
}a[1000];
int dp[1000];
bool cmp(node &a,node &b){
	if(a.x!=b.x){
		return a.x>b.x;
	}
	else{
		return a.y>b.y;
	}
}
int main(){
	int n,index=0,cnt,t[3];
	while(scanf("%d",&n)!=EOF&&n){
		cnt=-1;
		index++;
		for(int i=0;i<n;i++){
			scanf("%d%d%d",&t[0],&t[1],&t[2]);
			sort(t,t+3);
			a[++cnt].x=t[0];a[cnt].y=t[1];a[cnt].z=t[2];
			a[++cnt].x=t[0];a[cnt].y=t[2];a[cnt].z=t[1];
			a[++cnt].x=t[1];a[cnt].y=t[2];a[cnt].z=t[0];
		}
		sort(a,a+cnt+1,cmp);
		for(int i=0;i<=cnt;i++){
			dp[i]=a[i].z;
		}
		for(int i=1;i<=cnt;i++){
			for(int j=i-1;j>=0;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 re=dp[0];
		for(int i=1;i<=cnt;i++){
			re=max(re,dp[i]);
		}
		printf("Case %d: maximum height = %d\n",index,re);
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值