zoukankan      html  css  js  c++  java
  • codeforce 8A

    原题链接:https://codeforces.com/problemset/problem/8/A

    Peter likes to travel by train. He likes it so much that on the train he falls asleep.

    Once in summer Peter was going by train from city A to city B, and as usual, was sleeping. Then he woke up, started to look through the window and noticed that every railway station has a flag of a particular colour.

    The boy started to memorize the order of the flags' colours that he had seen. But soon he fell asleep again. Unfortunately, he didn't sleep long, he woke up and went on memorizing the colours. Then he fell asleep again, and that time he slept till the end of the journey.

    At the station he told his parents about what he was doing, and wrote two sequences of the colours that he had seen before and after his sleep, respectively.

    Peter's parents know that their son likes to fantasize. They give you the list of the flags' colours at the stations that the train passes sequentially on the way from A to B, and ask you to find out if Peter could see those sequences on the way from A to B, or from B to A. Remember, please, that Peter had two periods of wakefulness.

    Peter's parents put lowercase Latin letters for colours. The same letter stands for the same colour, different letters — for different colours.

    Input

    The input data contains three lines. The first line contains a non-empty string, whose length does not exceed 105, the string consists of lowercase Latin letters — the flags' colours at the stations on the way from A to B. On the way from B to A the train passes the same stations, but in reverse order.

    The second line contains the sequence, written by Peter during the first period of wakefulness. The third line contains the sequence, written during the second period of wakefulness. Both sequences are non-empty, consist of lowercase Latin letters, and the length of each does not exceed 100 letters. Each of the sequences is written in chronological order.

    Output

    Output one of the four words without inverted commas:

    • «forward» — if Peter could see such sequences only on the way from A to B;
    • «backward» — if Peter could see such sequences on the way from B to A;
    • «both» — if Peter could see such sequences both on the way from A to B, and on the way from B to A;
    • «fantasy» — if Peter could not see such sequences.

    Examples

    Input
    atob
    a
    b
    Output
    forward
    Input
    aaacaaa
    aca
    aa
    Output
    both

    Note

    It is assumed that the train moves all the time, so one flag cannot be seen twice. There are no flags at stations A and B.

     题意就是问你一个字符串正着看和倒着看是不是顺序看到s1和s2

    利用c++ stl  string中的find函数,很容易解决这道题

    另外,reverse函数即反转字符串

    find函数用法,当查询到值时,返回所在位置,查询不到时,返回值为-1.

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        string s,s1,s2;
        while(cin>>s>>s1>>s2)
        {
            int a[10]= {0,0};
            for(int i=0; i<2; i++)
            {
                int h=s.find(s1);
                if(h != -1)
                {
                    h = s.find(s2,h+s1.size());
                    if(h != -1)
                        a[i]=1;
                }
                reverse(s.begin(),s.end());
            }
            if(a[0]&&a[1])
                cout<<"both"<<endl;
            else if(a[0])
                cout<<"forward"<<endl;
            else if(a[1])
                cout<<"backward"<<endl;
            else
                cout<<"fantasy"<<endl;
        }
        return 0;
    }
    

      

  • 相关阅读:
    docker部署mysql Navicat远程连接
    window10安装nginx及请求转发到tomcat服务器访问项目及开机自启
    Keras笔记
    Spectral Clustering 并用silhouette指标值确定最优聚类数目
    Java Swing, paint(), paintComponent(), repaint()
    tensorflow(一):安装在Spyder上
    人工智能入门(七):artificial neural network
    人工智能入门(六):SVM
    人工智能入门(五):data mining的一些算法
    人工智能入门(四):uncertainty&基于统计的学习
  • 原文地址:https://www.cnblogs.com/clb123/p/10996048.html
Copyright © 2011-2022 走看看