UVA - 103 Stacking Boxes

来源:互联网 发布:弯矩挠度计算软件 编辑:程序博客网 时间:2024/05/29 19:45
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;int head[50];int tail;int dis[50];struct Edge{int to,next;}edge[1000];void add(int s,int e){edge[tail].to=e;edge[tail].next=head[s];head[s]=tail++;}int dfs(int s){int i;if(dis[s]>0)return dis[s];dis[s]=1;for(i=head[s];i!=-1;i=edge[i].next)dis[s]=max(dfs(edge[i].to)+1,dis[s]);return dis[s];}void out(int s){int i;cout<<s+1;for(i=head[s];i!=-1;i=edge[i].next)if(dis[s]==dis[edge[i].to]+1){cout<<" ";out(edge[i].to);return;}cout<<endl;}struct Box{int num,side[20];}box[50];bool operator <(Box a,Box b){int i;for(i=0;i<a.num;i++)if(a.side[i]>=b.side[i])return 0;return 1;}int main(){int i,j,k,n,s;while(cin>>k>>n){for(i=0;i<k;i++){box[i].num=n;for(j=0;j<n;j++)cin>>box[i].side[j];sort(box[i].side,box[i].side+n);}tail=0;memset(head,-1,sizeof(head));for(i=0;i<k;i++)for(j=0;j<k;j++)if(box[i]<box[j])add(i,j);/*for(i=0;i<k;i++){cout<<i<<"----->";for(j=head[i];j!=-1;j=edge[j].next)cout<<edge[j].to<<" ";cout<<endl;}return 0;*/memset(dis,0,sizeof(dis));s=0;for(i=0;i<k;i++){dfs(i);if(dis[s]<dis[i])s=i;}cout<<dis[s]<<endl;out(s);}return 0;}

UVA - 103
Stacking Boxes
Time Limit:3000MS Memory Limit:Unknown 64bit IO Format:%lld & %llu

SubmitStatus

Description

Download as PDF


 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 ann-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 boxtex2html_wrap_inline40 (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 longestnesting string of boxes, that is a sequence of boxes tex2html_wrap_inline44 such that each boxtex2html_wrap_inline46 nests in boxtex2html_wrap_inline48 (tex2html_wrap_inline50 .

A box D = ( tex2html_wrap_inline52 ) nests in a box E = (tex2html_wrap_inline54 ) if there is some rearrangement of thetex2html_wrap_inline56 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 = ( tex2html_wrap_inline52 )nests in box E = ( tex2html_wrap_inline54 ) if there is a permutationtex2html_wrap_inline62 oftex2html_wrap_inline64 such that (tex2html_wrap_inline66 ) ``fits'' in (tex2html_wrap_inline54 ) i.e., iftex2html_wrap_inline70 for alltex2html_wrap_inline72 .

The Input

The input consists of a series of box sequences. Each box sequence begins with a line consisting of the the number of boxesk 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. Thetex2html_wrap_inline82 line in the sequence (tex2html_wrap_inline84 ) gives the measurements for thetex2html_wrap_inline82 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 thek 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 23 78 105 29 1121 188 65 2 20 1 30 1023 15 7 9 11 340 50 34 24 14 49 10 11 12 13 1431 4 18 8 27 1744 32 13 19 41 191 2 3 4 5 680 37 47 18 21 9

Sample Output

53 1 2 4 547 2 5 6

Source


Root :: AOAPC I: Beginning Algorithm Contests (Rujia Liu) :: Volume 5. Dynamic Programming
Root :: Competitive Programming: Increasing the Lower Bound of Programming Contests (Steven & Felix Halim) :: Chapter 4. Graph :: Special Graph - DAG ::Single-Source Shortest/Longest Paths in DAG
Root :: Competitive Programming 2: This increases the lower bound of Programming Contests. Again (Steven & Felix Halim) :: Graph :: Special Graph (Directed Acyclic Graph) ::Single-Source Shortest/Longest Paths on DAG
Root :: Competitive Programming 3: The New Lower Bound of Programming Contests (Steven & Felix Halim) :: Graph :: Special Graph (Directed Acyclic Graph) ::Single-Source Shortest/Longest Paths on DAG
Root :: Competitive Programming: Increasing the Lower Bound of Programming Contests (Steven & Felix Halim) :: Chapter 3. Problem Solving Paradigms :: Dynamic Programming ::Longest Increasing Subsequence (LIS) - Classical

SubmitStatus

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 吃了带农药水果怎么办 开槽模切一体机模切时开槽怎么办 柔版印刷走纸歪斜怎么办 美团外卖一天8单怎么办 单位显示器丢了怎么办员工赔 纸板板门起泡了怎么办 卖家要我开出质量问题证明怎么办 闲鱼买到的商品不符合描述怎么办 寄出去的东西碎了怎么办 闲鱼快递损坏了怎么办 寄快递东西坏了怎么办 快递邮寄东西坏了怎么办 快递被别人拆了怎么办 淘宝买的东西包装破损怎么办 寄血液被退回来怎么办 快递被安检扣了怎么办 淘宝原单退回运费怎么办 运输过程中包裹破损怎么办 天猫没收到货签收怎么办 收到的快递坏了怎么办 自寄的快递少了怎么办 邮的东西弄坏了怎么办 物流签收后发现货物损坏怎么办 发现客人损坏了酒店物品怎么办 东西坏了签收了怎么办 朋友圈贩卖三无产品你怎么办 付钱给微商没有保障怎么办 电镀锌钢带生锈怎么办 电机机油从空气滤芯里流出怎么办 把塑料皮套吃了怎么办 塑料框眼镜有点小了怎么办 出口纸箱打了钉怎么办 买房子交款单据丢了怎么办 买房子所有单据丢失怎么办 车险单据都丢了怎么办 真空包装的东西里面有空气怎么办 发货物忘记写唛头了怎么办 Word文档撤销按钮删除了怎么办 ai保存时未响应怎么办 ai还没保存卡了怎么办 ai卡住了没保存怎么办