Monkey and Banana HDU - 1069(dp)

原题地址:点击
一道简单的dp题,求最长的递减子序列,不过得先排个序,先给出运算符重载的代码

struct node {
	int x,y,z;
	bool operator < (const node & a)const {
		if(x != a.x) 
			return x > a.x;
		return y > a.y;
	}//排序方式,长度相同则看宽度
	bool operator >(const node & a)const {
		return x > a.x && y > a.y;//方便后面做比较
	}
};

一个长方体有6种摆放的方式,可以用不定长数组来写,再用初始化列表代码会更简介
附上ac码:

#include<bits/stdc++.h>
using namespace std;
#define fio ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
struct node {
	int x,y,z;
	bool operator < (const node & a)const {
		if(x != a.x) 
			return x > a.x;
		return y > a.y;
	}
	bool operator >(const node & a)const {
		return x > a.x && y > a.y;
	}
};
int dp[200];
int main() {
	fio
	int n, x, y, z, ca = 0;;
	while(cin >> n,n) {
		ca++;
		memset(dp, 0, sizeof(dp));
		vector<node> q;
		while(n--) {
			cin >> x >> y >> z;
			q.push_back(node{x,y,z});q.push_back(node{y,x,z});
			q.push_back(node{x,z,y});q.push_back(node{z,x,y});
			q.push_back(node{z,y,x});q.push_back(node{y,z,x});
		}
		sort(q.begin(), q.end());
		int len = q.size(), Max = 0;
		for (int i = 0; i < len; i++) {
			dp[i] = q[i].z;
			for (int j = 0; j < i; j++) {
				if(q[j] > q[i]) 
					dp[i] = max(dp[i], dp[j] + q[i].z);
				Max = max(Max, dp[i]);
			}
		}
		printf("Case %d: maximum height = %d\n", ca, Max);
	}
}
全部评论

相关推荐

序&nbsp;朋友们,好久不见。&nbsp;笔者在过去消失的五个月里被困在情绪牢笼中过的相当煎熬,一度丢失自己,觉得整个世界都是昏暗的。&nbsp;庆幸的是靠着自己纯硬扛也是走出来了。表达欲再度回归,所以真的很开心还有机会能在再和大家见面。&nbsp;破碎秋招&nbsp;抑郁情绪的引爆点必然是秋招期间遭受的打击了,从去年九月份腾讯转正被告知失败之后就开始疯狂投递简历,每天都在经历:简历挂、一面挂、二面挂、三面挂、HR面挂,每天睁开眼就被无所适从的挫败感包围。&nbsp;秋招的特点是即便流程走到最后一步也不一定会&nbsp;offer,因为还需要进入大池子进行横向对比,俗称泡池子,而这一泡我的大多数面试流程到后面就没了后文,这一度让我感觉非常绝望。我深知自己学历并...
SoNiC_X:我已经工作快2年了,当时高考没考好没去到想去的学校,觉得天要塌了;校招找不到工作,觉得天要塌了;现在工作觉得看不到未来,觉得天要塌了;最近最大的感悟就是:天会一直塌,但是生活也会一直继续下去,还是要调整好自己的心态,不要因为一时的困难把自己困住,要记住完蛋的日子永远在后头
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务