CodeForces 8A Train and Peter (简单模拟题)

1、http://codeforces.com/problemset/problem/8/A

2、题目大意:

给定一个字符串作为主串,后边有两个字符串连续的,判断后边的字符串正序和逆序是否都能找到

简单的字符串题目

A. Train and Peter
time limit per test
1 second
memory limit per test
64 megabytes
input
standard input
output
standard output

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.
Sample test(s)
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.

3、AC代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
char s[100005],sa[105],sb[105];
int main()
{
    while(scanf("%s%s%s",s,sa,sb)!=EOF)
    {
        int l=strlen(s);
        int la=strlen(sa);
        int lb=strlen(sb);
        int flag1=0,pos=0,flag2=0,flag3=0,flag4=0;
        for(int i=0;i<l;i++)
        {
            flag1=1;
            for(int j=0;j<la;j++)
            {
                if(s[i+j]!=sa[j])
                {
                    flag1=0;
                    break;
                }
            }
            if(flag1==1)
            {
                pos=i+la;
                break;
            }
        }
        if(flag1==1)
        {
            for(int i=pos;i<l;i++)
            {
                flag2=1;
                for(int j=0;j<lb;j++)
                {
                    if(s[i+j]!=sb[j])
                    {
                        flag2=0;
                        break;
                    }
                }
                if(flag2==1)
                break;
            }
        }
        //反着找
        for(int i=l-1;i>=0;i--)
        {
            flag3=1;
            for(int j=0;j<la;j++)
            {
                if(s[i-j]!=sa[j])
                {
                    flag3=0;
                    break;
                }
            }
            if(flag3==1)
            {
                pos=i-la;
                break;
            }
        }
        for(int i=pos;i>=0;i--)
        {
            flag4=1;
            for(int j=0;j<lb;j++)
            {
                if(s[i-j]!=sb[j])
                {
                    flag4=0;
                    break;
                }
            }
            if(flag4==1)
            break;
        }
        if(flag2==1 && flag4==1)
        {
            printf("both\n");
        }
        else if(flag2==1)
        {
            printf("forward\n");
        }
        else if(flag4==1)
        {
            printf("backward\n");
        }
        else
        printf("fantasy\n");
    }
    return 0;
}
/*
a
aa
aaa

absdef
as
def

aaa
aa
a

abcde
dc
b
*/


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值