hdu 1022 火车进出站问题

Description

As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Ignatius Train Station is the fastest all over the world ^v^). But here comes a problem, there is only one railway where all the trains stop. So all the trains come in from one side and get out from the other side. For this problem, if train A gets into the railway first, and then train B gets into the railway before train A leaves, train A can't leave until train B leaves. The pictures below figure out the problem. Now the problem for you is, there are at most 9 trains in the station, all the trains has an ID(numbered from 1 to n), the trains get into the railway in an order O1, your task is to determine whether the trains can get out in an order O2. 
  

Input

The input contains several test cases. Each test case consists of an integer, the number of trains, and two strings, the order of the trains come in:O1, and the order of the trains leave:O2. The input is terminated by the end of file. More details in the Sample Input. 

Output

The output contains a string "No." if you can't exchange O2 to O1, or you should output a line contains "Yes.", and then output your way in exchanging the order(you should output "in" for a train getting into the railway, and "out" for a train getting out of the railway). Print a line contains "FINISH" after each test case. More details in the Sample Output. 

Sample Input

3 123 321
3 123 312

Sample Output

Yes.
in
in
in
out
out
out
FINISH
No.
FINISH


        
 
For the first Sample Input, we let train 1 get in, then train 2 and train 3.
So now train 3 is at the top of the railway, so train 3 can leave first, then train 2 and train 1.
In the second Sample input, we should let train 3 leave first, so we have to let train 1 get in, then train 2 and train 3.
Now we can let train 3 leave.
But after that we can't let train 1 leave before train 2, because train 2 is at the top of the railway at the moment.
So we output "No.".
题意:n辆车,以序列1的方式进站,问出站是否能以序列2的方式,并输出步骤。
 1 #include<iostream>
 2 #include<stack>
 3 #include<stdio.h>
 4 #define maxn 100
 5 using namespace std;
 6 int main()
 7 {
 8     stack<char>s;
 9     char str1[maxn];
10     char str2[maxn];
11     int n;
12 
13     while(scanf("%d%s%s",&n,str1,str2)!=EOF)
14     {
15         int result[maxn]={0};///result代表步骤,1是进,0是出
16         s.push(str1[0]);///第一个元素进栈
17         result[0] = 1;///记录进来的第一个
18         int i,j,k;
19         i = 0;
20         j = 0;
21         k = 1;
22         while(i<n&&j<n)
23         {
24             if(s.size()&&s.top()==str2[j])///如果栈顶元素与序列2当前的元素相等,则弹栈,序列2集团向后移一位。  
25             {
26                 j++;
27                 s.pop();
28                 result[k++] = 0;
29             }
30             else///否则从序列1中取当前元素压入栈中。
31             {
32                 if(i==n) break;
33                 s.push(str1[++i]);
34                 result[k++] = 1;
35             }
36         }
37         if(i==n) printf("No.
");///如果I==N表示栈顶元素不等于序列2当前元素,且序列1中元素都已经入过栈,判断不能得到序列2一样的答案。  
38         else
39         {
40             printf("Yes.
");
41             for(int i=0;i<k;i++)
42                 if(result[i])
43                 printf("in
");
44             else
45                 printf("out
");
46         }
47         printf("FINISH
");
48     }
49     return 0;
50 }
View Code
原文地址:https://www.cnblogs.com/biu-biu-biu-/p/5783114.html