zoukankan      html  css  js  c++  java
  • HDU1022--Train Problem I

    Train Problem I
    Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 15237 Accepted Submission(s): 5642


    Problem 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

    Hint
    Hint

    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.".


    Author
    Ignatius.L

     1 #include<cstdio>
     2 #include<cstring>
     3 #include<algorithm>
     4 #include<iostream>
     5 #include<stack>
     6 using namespace std;
     7   
     8 char str[10001];
     9 char str1[10001];
    10 stack<char>p;
    11   
    12 int main()
    13 {
    14     int n;
    15     int num[10001];
    16     while(~scanf("%d%s%s",&n,str,str1))
    17     {
    18         memset(num,0,sizeof(num));  //1 in,-1 out
    19         while(!p.empty())
    20         {
    21             p.pop();
    22         }
    23         int cnt=0;
    24         int temp=0,i;
    25         for(i=0;i<n;i++)
    26         {
    27             p.push(str[i]); 
    28             num[temp++]=1;
    29             while(p.top()==str1[cnt])
    30             {
    31                 cnt++;
    32                 p.pop();
    33                 num[temp++]=-1;
    34                 if(p.empty())break;
    35             }
    36         }
    37         if(!p.empty())
    38         {
    39             printf("No.
    ");
    40         }
    41         else
    42         {
    43             printf("Yes.
    ");
    44             for(i=0;i<2*n;i++)
    45             {
    46                 if(num[i]==1)
    47                     printf("in
    ");
    48                 else
    49                     printf("out
    ");
    50             }
    51         }
    52         printf("FINISH
    ");
    53     }
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    vue跨域,复杂请求,后端为beego
    vue单页应用中,使用setInterval()定时向服务器获取数据,后来跳转页面后,发现还在不停的获取数据。
    vue中使用watch函数,当数据改变时自动引发事件
    如何更改github工程的语言属性
    FreeMarker如何输出特殊含义字符
    我的github代码库
    热烈庆祝开博
    Oracle的中文排序问题
    MySQL出现时区错误的解决方法
    java调用7zip解压压缩包
  • 原文地址:https://www.cnblogs.com/zafuacm/p/3185236.html
Copyright © 2011-2022 走看看