Codeforces 8A. Train and Peter
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
inputCopy
atob
a
b
outputCopy
forward
inputCopy
aaacaaa
aca
aa
outputCopy
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,s3。
問s1中是否存在s2,s3這兩個子串,且要求s2,s3沒有交集且s2在s3前面。
將s1逆轉一下再算一遍是否滿足上述條件。
#include<cstdio>
#include<math.h>
#include<algorithm>
#include<map>
#include<cstring>
#include<queue>
#include<string>
#include<iostream>
using namespace std;
const int maxn = 1e5 + 7;
string s1,s2,s3;
int main() {
cin >> s1 >> s2 >> s3;
int n1 = s1.size(),n2 = s2.size(),n3 = s3.size();
int pos = -1;
int flag1 = 0;
for(int i = 0;i <= n1 - n2;i++) {
string tmp = s1.substr(i,n2);
if(tmp == s2) {
pos = i + n2 - 1;break;
}
}
if(pos != -1) {
for(int i = pos + 1;i <= n1 - n3;i++) {
string tmp = s1.substr(i,n3);
if(tmp == s3) {
flag1 = 1;break;
}
}
}
reverse(s1.begin(),s1.end());
pos = -1;
int flag2 = 0;
for(int i = 0;i <= n1 - n2;i++) {
string tmp = s1.substr(i,n2);
if(tmp == s2) {
pos = i + n2 - 1;break;
}
}
if(pos != -1) {
for(int i = pos + 1;i <= n1 - n3;i++) {
string tmp = s1.substr(i,n3);
if(tmp == s3) {
flag2 = 1;break;
}
}
}
if(flag1 && flag2) {
printf("both\n");
} else if(flag1) {
printf("forward\n");
} else if(flag2) {
printf("backward\n");
} else {
printf("fantasy\n");
}
return 0;
}
相關文章
- trainAI
- Peter Principle
- peterson演算法演算法
- transformers、torch train demoORMAI
- Peter Hessler的《甲骨》( Oracle Bones )Oracle
- tf.train.NewCheckpointReaderAI
- 車廂排程(train.cpp)AI
- 如何更好理解Peterson演算法?演算法
- train_test_split資料集分割AI
- Vova and Train(CF-1066A)AI
- 火車山谷Train Valley 2 中文遊戲攻略AI遊戲
- sklearn中train_test_splite的兩種用法AI
- 十圖詳解TensorFlow資料讀取機制tf.train.string_input_producer和tf.train.start_queue_runnersAI
- Peter Norvig:十年學會程式設計程式設計
- Codeforces
- Java 杭電ACM Train Problem I 1022JavaACMAI
- 2008 4 16: The train was five minutes behind scheduleAI
- 闡述Peter Molyneux的“好奇心”實驗意義UX
- codeforces Mafia
- codeforces Winner
- codeforces Educational Codeforces Round 33 (Rated for Div. 2)
- 【CodeForces訓練記錄】Codeforces Global Round 27
- Peter Norvig:自學程式設計,十年磨一劍程式設計
- codeforces Educational Codeforces Round 33 (Rated for Div. 2)B
- codeforces Photo of The Sky
- Codeforces - Jzzhu and Numbers
- codeforces #442 B
- Codeforces Sereja and Array
- Codeforces Round #174
- Codeforces Round #170
- Codeforces Round 955
- Codeforces 專區
- 9.11 codeforces
- codeforces 11/10
- Peter Thiel的基金為大型加密貨幣投資者簡化交易加密
- 【CodeForces訓練記錄】Codeforces Round 981 (Div. 3)
- 【CodeForces訓練記錄】Codeforces Round 982 (Div. 2)
- 【CodeForces訓練記錄】Codeforces Round 984 (Div. 3)