前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >hdu---(3779)Railroad(记忆化搜索/dfs)

hdu---(3779)Railroad(记忆化搜索/dfs)

作者头像
Gxjun
发布2018-03-26 15:20:27
1K0
发布2018-03-26 15:20:27
举报
文章被收录于专栏:mlml

Railroad

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 572    Accepted Submission(s): 228

Problem Description

A train yard is a complex series of railroad tracks for storing, sorting, or loading/unloading railroad cars. In this problem, the railroad tracks are much simpler, and we are only interested in combining two trains into one.

Figure 1: Merging railroad tracks. The two trains each contain some railroad cars. Each railroad car contains a single type of products identified by a positive integer up to 1,000,000. The two trains come in from the right on separate tracks, as in the diagram above. To combine the two trains, we may choose to take the railroad car at the front of either train and attach it to the back of the train being formed on the left. Of course, if we have already moved all the railroad cars from one train, then all remaining cars from the other train will be moved to the left one at a time. All railroad cars must be moved to the left eventually. Depending on which train on the right is selected at each step, we will obtain different arrangements for the departing train on the left. For example, we may obtain the order 1,1,1,2,2,2 by always choosing the top train until all of its cars have been moved. We may also obtain the order 2,1,2,1,2,1 by alternately choosing railroad cars from the two trains. To facilitate further processing at the other train yards later on in the trip (and also at the destination), the supervisor at the train yard has been given an ordering of the products desired for the departing train. In this problem, you must decide whether it is possible to obtain the desired ordering, given the orders of the products for the two trains arriving at the train yard.

Input

The input consists of a number of cases. The first line contains two positive integers N1 N2 which are the number of railroad cars in each train. There are at least 1 and at most 1000 railroad cars in each train. The second line contains N1 positive integers (up to 1,000,000) identifying the products on the first train from front of the train to the back of the train. The third line contains N2 positive integers identifying the products on the second train (same format as above). Finally, the fourth line contains N1+N2 positive integers giving the desired order for the departing train (same format as above). The end of input is indicated by N1 = N2 = 0.

Output

For each case, print on a line possible if it is possible to produce the desired order, or not possible if not.

Sample Input

3 3 1 2 1 2 1 1 1 2 1 1 2 1 3 3 1 2 1 2 1 2 1 1 1 2 2 2 0 0

Sample Output

possible

not possible

题目的意思:  给你两个数组a,b  让a,b两个数组按其原序进行组合,问能否组合成为c数组。

我们可以试着用搜索的方式进行处理,但是由于数据较大,而且在处理的过程中,有重叠的状态,所以我们需要用到记忆话,对于原先有的状态之后的搜索,我们不去在重复,这样就节省了很多的时间。

代码:

代码语言:javascript
复制
 1 //#define LOCAL
 2 #include<cstdio>
 3 #include<cstring>
 4 using namespace std;
 5 const int maxn=1002;
 6 int aa[maxn],bb[maxn],cc[maxn<<1];
 7 int mat[maxn][maxn];
 8 int n1,n2;
 9 bool flag;
10 void dfs(int lena,int lenb,int lenc)
11 {
12     if(lena==n1+1&&lenb==n2+1){
13          flag=1;
14         return ;
15      }
16    if(mat[lena][lenb]) return ;
17    if(!flag&&aa[lena]==cc[lenc]){
18        mat[lena][lenb]=1;
19          dfs(lena+1,lenb,lenc+1);
20    }
21    if(!flag&&bb[lenb]==cc[lenc]){
22        mat[lena][lenb]=1;
23       dfs(lena,lenb+1,lenc+1);
24    }
25 }
26 void input(int n,int a[])
27 {
28     for(int i=1;i<=n;i++)
29        scanf("%d",&a[i]);
30 }
31 int main()
32 {
33     #ifdef LOCAL
34     freopen("test.in","r",stdin);
35     #endif
36     while(scanf("%d%d",&n1,&n2)&&n1+n2!=0)
37     {
38         input(n1,aa);
39         aa[n1+1]=-1;
40         input(n2,bb);
41         bb[n2+1]=-1;
42         input(n1+n2,cc);
43         flag=0;
44         memset(mat,0,sizeof(mat));
45         dfs(1,1,1);
46         if(flag)printf("possible\n");
47         else printf("not possible\n");
48     }
49  return 0;
50 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-09-25 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Railroad
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档