首页 > 代码库 > hdu 1069 动态规划
hdu 1069 动态规划
#include <iostream>
#include <stdio.h>
#include <string>
#include <algorithm>
using namespace std;
struct node
{
int x, y, z, h;
};
bool cmp(node a, node b)
{
return a.x*a.y < b.x*b.y;
}
void change(int &a, int &b, int &c)
{
int t;
if(a>b) {t=a; a=b; b=t;}
if(a>c) {t=a; a=c; c=t;}
if(b>c) {t=b; b=c; c=t;}
}
int main()
{
int n;
int T =1;
while(scanf("%d", &n)!=EOF && n)
{
node num[500];
//int dp[500];
//memset(dp, 0, sizeof(dp) );
int flag =0;
for(int i=0; i<n; i++)
{
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
change(a, b, c);
num[flag].x = a; num[flag].y = b; num[flag++].z = c;
num[flag].x = a; num[flag].y = c; num[flag++].z = b;
num[flag].x = b; num[flag].y = c; num[flag++].z = a;
}
sort(num, num+flag, cmp);
int all = 0;
num[0].h = num[0].z;
for(int i=0; i<flag; i++)
{
int max = 0;
for(int j=0; j<i; j++)
{
if(num[j].x < num[i].x && num[j].y < num[i].y && max < num[j].h)
max = num[j].h;
}
num[i].h = max + num[i].z;
}
for(int i=0; i<flag; i++)
if(all < num[i].h)
all = num[i].h;
printf("Case %d: maximum height = %d\n",T++,all);
}
return 0;
}
来自为知笔记(Wiz)
附件列表
hdu 1069 动态规划
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。