前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforces Beta Round #8 A. Train and Peter

Codeforces Beta Round #8 A. Train and Peter

作者头像
glm233
发布2020-09-28 10:44:42
9510
发布2020-09-28 10:44:42
举报
文章被收录于专栏:glm的全栈学习之路

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.

题意:给你3个字符串A、B、C如果在A中按照从左往右顺序出现B、C或者将字符串A反转过来之后还按照从左往右顺序出现B、C

则有forward 、backward、both、fantasy四种判断

代码语言:javascript
复制
// luogu-judger-enable-o2
#include<bits/stdc++.h>
#include<unordered_set>
#define rg register ll
#define inf 2147483647
#define min(a,b) (a<b?a:b)
#define max(a,b) (a>b?a:b)
#define ll long long
#define maxn 100005
const double eps = 1e-6;
using namespace std;
inline ll read()
{
	char ch = getchar(); ll s = 0, w = 1;
	while (ch < 48 || ch>57) { if (ch == '-')w = -1; ch = getchar(); }
	while (ch >= 48 && ch <= 57) { s = (s << 1) + (s << 3) + (ch ^ 48); ch = getchar(); }
	return s * w;
}
inline void write(ll x)
{
	if (x < 0)putchar('-'), x = -x;
	if (x > 9)write(x / 10);
	putchar(x % 10 + 48);
}
string a,b,c;
int main()
{
    cin>>a>>b>>c;
    ll x=a.find(b),flag1=0,flag2=0;
    if(x==4294967295)
    {
        flag1=0;
    }
    else
    {
        //cout<<x<<endl;
        string tep=a.substr(x+b.size(),a.size()-x-b.size()+1);
        //cout<<tep<<endl;
        if(tep.find(c)!=-1)
        {
            flag1=1;
        }
    }
    reverse(a.begin(),a.end());
    //cout<<a<<endl;
    x=a.find(b);
      if(x==4294967295)
    {
        flag2=0;
    }
    else
    {
       string tep=a.substr(x+b.size(),a.size()-x-b.size()+1);
        //cout<<tep<<endl;
        if(tep.find(c)!=-1)
        {
            flag2=1;
        }
    }
    if(flag1==0&&flag2==0)
    {
        cout<<"fantasy"<<endl;
        return 0;
    }
     if(flag1==1&&flag2==0)
    {
        cout<<"forward"<<endl;
        return 0;
    }
     if(flag1==0&&flag2==1)
    {
        cout<<"backward"<<endl;
        return 0;
    }
     if(flag1==1&&flag2==1)
    {
        cout<<"both"<<endl;
        return 0;
    }
   	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/09/04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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