[2016-03-30][HDU][1069][Monkey and Banana]

Posted 红洋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-30][HDU][1069][Monkey and Banana]相关的知识,希望对你有一定的参考价值。

  • 时间:2016-03-27 15:19:40 星期日

  • 题目编号:[2016-03-30][HDU][1069][Monkey and Banana]

  • 题目大意:给定n种积木无限个,问这些积木最大能叠多高,上面的积木长宽必须严格小于下面的积木

  • 分析:

    • dp[i]表示第i个积木在顶部时候的最大高度,那么dp[i] = max(dp[i],dp[j] + h[i]);?jij
    • 初始条件就是长宽最大的高度是它自己,
  1. #include <algorithm>
  2. #include <cstring>
  3. #include <cstdio>
  4. using namespace std;
  5. typedef long long LL;
  6. int dp[90*90];
  7. struct mRect{
  8. int x,y,z;
  9. mRect(int a = 0,int b = 0,int c = 0):x(a),y(b),z(c){};
  10. bool operator < (const mRect & a)const{
  11. return x > a.x || (x == a.x && y > a.y) || (x == a.x && y == a.y && z > a.z);
  12. }
  13. bool operator == (const mRect & a)const{
  14. return x == a.x && y == a.y && z == a.z;
  15. }
  16. }r[90 * 90];
  17. int main(){
  18. int n,cntcase = 0;
  19. while(~scanf("%d",&n) && n){
  20. int a[3],cur = 1;
  21. for(int i = 0 ;i < n ; ++i){
  22. for(int j = 0;j < 3 ;++j) scanf("%d",&a[j]);
  23. sort(a,a+3);
  24. r[cur++] = mRect(a[0],a[1],a[2]);
  25. r[cur++] = mRect(a[0],a[2],a[1]);
  26. r[cur++] = mRect(a[1],a[2],a[0]);
  27. }
  28. sort(r+1,r+cur);
  29. cur = unique(r+1,r+cur) - r;
  30. memset(dp,0,sizeof(dp));
  31. r[0] = mRect(0x3f3f3f3f,0x3f3f3f3f,0);
  32. int maxh = 0;
  33. for(int i = 1;i < cur;++i){
  34. for(int j = 0;j < i;++j){
  35. if(r[i].x < r[j].x && r[i].y < r[j].y){
  36. dp[i] = max(dp[i],dp[j] + r[i].z);
  37. }
  38. }
  39. maxh = max(maxh,dp[i]);
  40. }
  41. printf("Case %d: maximum height = %d\n",++cntcase,maxh);
  42. }
  43. return 0;
  44. }




以上是关于[2016-03-30][HDU][1069][Monkey and Banana]的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1069

HDU 1069 dp最长递增子序列

hdu1069

HDU 1069 Monkey and Banana

HDU1069 最长上升子序列

HDU-1069-Monkey and Banana