题目来源:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=3&page=show_problem&problem=39

 Stacking Boxes 

Background

Some concepts in Mathematics and Computer Science are simple in one or two dimensions but become more complex when extended to arbitrary dimensions. Consider solving differential equations in several dimensions and analyzing the topology of an n-dimensional hypercube. The former is much more complicated than its one dimensional relative while the latter bears a remarkable resemblance to its ``lower-class'' cousin.

The Problem

Consider an n-dimensional ``box'' given by its dimensions. In two dimensions the box (2,3) might represent a box with length 2 units and width 3 units. In three dimensions the box (4,8,9) can represent a box  (length, width, and height). In 6 dimensions it is, perhaps, unclear what the box (4,5,6,7,8,9) represents; but we can analyze properties of the box such as the sum of its dimensions.

In this problem you will analyze a property of a group of n-dimensional boxes. You are to determine the longest nesting string of boxes, that is a sequence of boxes  such that each box  nests in box  (  .

A box D = (  ) nests in a box E = (  ) if there is some rearrangement of the  such that when rearranged each dimension is less than the corresponding dimension in box E. This loosely corresponds to turning box D to see if it will fit in box E. However, since any rearrangement suffices, box D can be contorted, not just turned (see examples below).

For example, the box D = (2,6) nests in the box E = (7,3) since D can be rearranged as (6,2) so that each dimension is less than the corresponding dimension in E. The box D = (9,5,7,3) does NOT nest in the box E = (2,10,6,8) since no rearrangement of D results in a box that satisfies the nesting property, but F = (9,5,7,1) does nest in box E since F can be rearranged as (1,9,5,7) which nests in E.

Formally, we define nesting as follows: box D = (  ) nests in box E = (  ) if there is a permutation  of  such that (  ) ``fits'' in (  ) i.e., if  for all .

The Input

The input consists of a series of box sequences. Each box sequence begins with a line consisting of the the number of boxes k in the sequence followed by the dimensionality of the boxes, n (on the same line.)

This line is followed by k lines, one line per box with the n measurements of each box on one line separated by one or more spaces. The  line in the sequence (  ) gives the measurements for the  box.

There may be several box sequences in the input file. Your program should process all of them and determine, for each sequence, which of the k boxes determine the longest nesting string and the length of that nesting string (the number of boxes in the string).

In this problem the maximum dimensionality is 10 and the minimum dimensionality is 1. The maximum number of boxes in a sequence is 30.

The Output

For each box sequence in the input file, output the length of the longest nesting string on one line followed on the next line by a list of the boxes that comprise this string in order. The ``smallest'' or ``innermost'' box of the nesting string should be listed first, the next box (if there is one) should be listed second, etc.

The boxes should be numbered according to the order in which they appeared in the input file (first box is box 1, etc.).

If there is more than one longest nesting string then any one of them can be output.

Sample Input

5 2
3 7
8 10
5 2
9 11
21 18
8 6
5 2 20 1 30 10
23 15 7 9 11 3
40 50 34 24 14 4
9 10 11 12 13 14
31 4 18 8 27 17
44 32 13 19 41 19
1 2 3 4 5 6
80 37 47 18 21 9

Sample Output

5
3 1 2 4 5
47 2 5 6

解题思路:
题目意思:给定n个m维的矩形,问我们能够嵌套的矩形最多有几个,输出个数和嵌套的矩形编号。代码:
 1 #include<bits/stdc++.h>
 2 #define inf 0x7fffffff
 3 using namespace std;
 4 typedef long long LL;
 5
 6 int k,n;
 7 int dp[33],pre[33];
 8 struct node
 9 {
10     int an[13];
11     int id;
12     friend bool operator < (node a,node b)
13     {
14         for (int i=0 ;i<n ;i++)
15         {
16             if (a.an[i] != b.an[i]) return a.an[i] <  b.an[i];
17         }
18     }
19 }arr[33];
20
21 void printOut(int u)
22 {
23     if (pre[u]!=-1) printOut(pre[u]);
24     if (pre[u]==-1) printf("%d",arr[u].id+1 );
25     else printf(" %d",arr[u].id+1 );
26 }
27
28 int main()
29 {
30     while (scanf("%d%d",&k,&n)!=EOF)
31     {
32         memset(dp,0,sizeof(dp));
33         memset(pre,-1,sizeof(pre));
34         for (int i=0 ;i<k ;i++)
35         {
36             for (int j=0 ;j<n ;j++)
37                 scanf("%d",&arr[i].an[j]);
38             arr[i].id=i;
39             sort(arr[i].an,arr[i].an+n);
40         }
41         sort(arr,arr+k);
42         for (int i=0 ;i<k ;i++)
43         {
44             int temp=0;
45             for (int j=0 ;j<i ;j++)
46             {
47                 int flag=0;
48                 for (int u=0 ;u<n ;u++)
49                     if (arr[i].an[u]<=arr[j].an[u]) {flag=1;break; }
50                 if (!flag && dp[j]>temp)
51                 {
52                     temp=dp[j];
53                     pre[i]=j;
54                 }
55             }
56             dp[i]=temp+1;
57         }
58         int maxlen=-1,num=0;
59         for (int i=0 ;i<k ;i++)
60         {
61             if (dp[i]>maxlen)
62             {
63                 maxlen=dp[i];
64                 num=i;
65             }
66         }
67         printf("%d\n",maxlen);
68         printOut(num);
69         printf("\n");
70     }
71     return 0;
72 }

 

转载于:https://www.cnblogs.com/zpfbuaa/p/5041458.html

UVa 103 - Stacking Boxes(dp求解)相关推荐

  1. UVA 103 Stacking Boxes 套箱子 DAG最长路 dp记忆化搜索

    题意:给出几个多维的箱子,如果箱子的每一边都小于另一个箱子的对应边,那就称这个箱子小于另一个箱子,然后要求能够套出的最多的箱子. 要注意的是关系图的构建,对箱子的边排序,如果分别都小于另一个箱子就说明 ...

  2. 【DP】UVA 103 Stacking Boxes 输出路径

    类似于叠箱子 对于箱子a : (a1,a2,a3),b : (b1,b2,b3) 存在一个顺序ai<bj,ak<bi,aj<bk 就表示a可以到b #include <stdi ...

  3. UVa 103 - Stacking Boxes

    题目大意:矩阵嵌套,不过维数是多维的.有两个个k维的盒子A(a1, a1...ak), B(b1, b2...bk),若能找到(a1...ak)的一个排列使得ai < bi,则盒子A可嵌套在盒子 ...

  4. UVA 103 Stacking Boxes

    终于完成了啊,这可是我自己独立做的第一道DP题!激动ing--这题在白书里是DAG上的DP,可是我看不懂,比如怎么建图我就不会,所以代码都是自己想的.图我不会建,只好动下脑子,刚开始是想用二维数组保存 ...

  5. UVA 116 Unidirectional TSP DP

    题目链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=3&p ...

  6. UVA 1331 Minimax Triangulation DP, 三角剖分

    题目链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_proble ...

  7. uva 10453 - Make Palindrome(dp)

    题目链接:10453 - Make Palindrome 题目大意:给出一个字符串,通过插入字符使得原字符串变成一个回文串,要求插入的字符个数最小,并且输出最后生成的回文串. 解题思路:和uva 10 ...

  8. UVA 1625 Color Length DP

    题目链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_proble ...

  9. uva 1366 - Martian Mining(dp)

    题目链接:uva 1366 - Martian Mining 题目大意:给出n和m,然后给出两种矿的分布,a种只能向上运输,b中只能向下运输,问说最多可以得到多少. 解题思路:dp[i][j]表示矩阵 ...

最新文章

  1. noi99钉子和小球 解题报告
  2. 用AI击破传统行业痛点 “百度大脑行业创新论坛”将提7大行业解决方案
  3. js 获取 本周、上周、本月、上月、本季度、上季度的开始结束日期
  4. Opportunity PRODUCT GUID
  5. linux cpu频率设置,linux cpu 频率设置
  6. 在 eclipse 中 设置 jvm 的 运行时目录
  7. JAVA构造函数是不是封装_Java 封装与构造函数
  8. TCP Socket 粘包
  9. 【java学习之路】(javaWeb篇)002.CSS
  10. SQL语法整理(五)-视图
  11. C语言大作业--小型工资管理系统
  12. python遍历json数据方法
  13. 选择一个网络托管业务域名代备案提供全面的解决方案
  14. 洛谷 P1359 租用游艇(Floyd, Dijkstra,SPFA)
  15. 重力勘探正演模拟matlab,裴雪林, 郭万松 (1995) 高精度重力勘探技术在国内外的应用. 断块油田, 5, 8-11....
  16. python search用法,Python-re中search()函数的用法详解(查找ip)
  17. css33d画梯形,CSS3 matrix3d矩形到梯形转换
  18. 树莓派上安装tushare获取股票数据
  19. 雷达覆盖(SSL_1232)
  20. 正则表达式的一些元符号

热门文章

  1. JavaEE Tutorials (17) - Java消息服务示例
  2. Linux ifconfig命令
  3. Linux学习之CentOS(三)--初识linux的文件系统以及用户组等概念
  4. vfp 8.0中image控件的属性:RotateFlip
  5. 中央暗示:07年别急买房
  6. 【知识小课堂】mongodb 之 查询关键词使用
  7. 【Android】ActivityManager结构图
  8. VS2005+cygwin编译WebKit
  9. Activity内嵌Fragment,当Activity recreate时Fragment被添加多次,造成相互遮盖
  10. 浏览器插件 - 通用注入模版JS