xtu summer individual-4 D - Martian Strings

Martian Strings

Time Limit: 2000ms

Memory Limit: 262144KB

This problem will be judged on CodeForces. Original ID: 149E
64-bit integer IO format: %I64d      Java class name: (Any)

During the study of the Martians Petya clearly understood that the Martians are absolutely lazy. They like to sleep and don‘t like to wake up.

Imagine a Martian who has exactly n eyes located in a row and numbered from the left to the right from 1 to n. When a Martian sleeps, he puts a patch on each eye (so that the Martian morning doesn‘t wake him up). The inner side of each patch has an uppercase Latin letter. So, when a Martian wakes up and opens all his eyes he sees a string sconsisting of uppercase Latin letters. The string‘s length is n.

"Ding dong!" — the alarm goes off. A Martian has already woken up but he hasn‘t opened any of his eyes. He feels that today is going to be a hard day, so he wants to open his eyes and see something good. The Martian considers only m Martian words beautiful. Besides, it is hard for him to open all eyes at once so early in the morning. So he opens two non-overlapping segments of consecutive eyes. More formally, the Martian chooses four numbers abcd, (1 ≤ a ≤ b < c ≤ d ≤ n) and opens all eyes with numbers i such that a ≤ i ≤ b or c ≤ i ≤ d. After the Martian opens the eyes he needs, he reads all the visible characters from the left to the right and thus, he sees some word.

Let‘s consider all different words the Martian can see in the morning. Your task is to find out how many beautiful words are among them.

Input

The first line contains a non-empty string s consisting of uppercase Latin letters. The strings‘ length is n (2 ≤ n ≤ 105). The second line contains an integer m (1 ≤ m ≤ 100) — the number of beautiful words. Next m lines contain the beautiful words pi, consisting of uppercase Latin letters. Their length is from 1 to 1000. All beautiful strings are pairwise different.

Output

Print the single integer — the number of different beautiful strings the Martian can see this morning.

Sample Input

Input

ABCBABA2BAABABBA

Output

1

Hint

Let‘s consider the sample test. There the Martian can get only the second beautiful string if he opens segments of eyes a = 1, b = 2 and c = 4, d = 5 or of he opens segments of eyes a = 1, b = 2 and c = 6, d = 7.

Source

Codeforces Round #106 (Div. 2)

解题:KMP,几天没写KMP,居然犯了个低级错误!题意大概就是给出一个母串,再给出若干字串,要求统计有多少字串可以优母串中的两个字串拼接而成!注意顺序,样例说得很清楚了,左边的一定要在左边。假设a<b<c<d,abcd这样拼接是可以的,而cdab是禁止的。注意母串逆转过去后,在下次操作前,要逆转回去。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cstdlib>
 5 #include <vector>
 6 #include <climits>
 7 #include <algorithm>
 8 #include <cmath>
 9 #define LL long long
10 #define INF 0x3f3f3f
11 using namespace std;
12 char str[100010],s[100010];
13 int n,fail[100010],mark[100010];
14 void getFail(char *s){
15     int i,j;
16     fail[0] = fail[1] = 0;
17     for(i = 1; s[i]; i++){
18         j = fail[i];
19         while(j && s[i] != s[j]) j = fail[j];
20         fail[i+1] = s[i] == s[j]?j+1:0;
21     }
22 }
23 void kmp(char *str,char *p){
24     memset(mark,-1,sizeof(mark));
25     int i,j;
26     for(i = j = 0; str[i]; i++){
27         while(j && str[i] != p[j]){j = fail[j];}
28         if(str[i] == p[j]) j++;
29         if(j && mark[j] == -1) mark[j] = i;
30     }
31 }
32 bool Find(char *str,char *p){
33     int i,j,len = strlen(p),slen = strlen(str);
34     for(i = j = 0; str[i]; i++){
35         while(j && str[i] != p[j]) j = fail[j];
36         if(str[i] == p[j]) j++;
37         if(j && mark[len-j] != -1 && mark[len-j] < slen-i-1)
38             return true;
39     }
40     return false;
41 }
42 int main(){
43     int ans;
44     while(~scanf("%s",str)){
45         scanf("%d",&n);
46         ans = 0;
47         while(n--){
48             scanf("%s",s);
49             getFail(s);
50             kmp(str,s);
51             reverse(str,str+strlen(str));
52             reverse(s,s+strlen(s));
53             getFail(s);
54             if(Find(str,s)) ans++;
55             reverse(str,str+strlen(str));
56         }
57         printf("%d\n",ans);
58     }
59     return 0;
60 }

xtu summer individual-4 D - Martian Strings,布布扣,bubuko.com

时间: 2024-12-28 15:49:41

xtu summer individual-4 D - Martian Strings的相关文章

xtu summer individual 2 C - Hometask

Hometask Time Limit: 2000ms Memory Limit: 262144KB This problem will be judged on CodeForces. Original ID: 154A64-bit integer IO format: %I64d      Java class name: (Any) Sergey attends lessons of the N-ish language. Each lesson he receives a hometas

xtu summer individual 6 B - Number Busters

Number Busters Time Limit: 1000ms Memory Limit: 262144KB This problem will be judged on CodeForces. Original ID: 382B64-bit integer IO format: %I64d      Java class name: (Any) Arthur and Alexander are number busters. Today they've got a competition.

xtu summer individual 1 E - Palindromic Numbers

E - Palindromic Numbers Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu Description A palindromic number or numeral palindrome is a 'symmetrical' number like 16461 that remains the same when its digits are reversed. In this

xtu summer individual 6 D - Checkposts

Checkposts Time Limit: 2000ms Memory Limit: 262144KB This problem will be judged on CodeForces. Original ID: 427C64-bit integer IO format: %I64d      Java class name: (Any) Your city has n junctions. There are m one-way roads between the junctions. A

xtu summer individual 5 D - Subsequence

Subsequence Time Limit: 1000ms Memory Limit: 32768KB This problem will be judged on HDU. Original ID: 353064-bit integer IO format: %I64d      Java class name: Main There is a sequence of integers. Your task is to find the longest subsequence that sa

xtu summer individual 1 A - An interesting mobile game

An interesting mobile game Time Limit: 1000ms Memory Limit: 32768KB This problem will be judged on HDU. Original ID: 329564-bit integer IO format: %I64d      Java class name: Main XQ,one of the three Sailormoon girls,is usually playing mobile games o

xtu summer individual 5 F - Post Office

Post Office Time Limit: 1000ms Memory Limit: 10000KB This problem will be judged on PKU. Original ID: 116064-bit integer IO format: %lld      Java class name: Main There is a straight highway with villages alongside the highway. The highway is repres

xtu summer individual 5 A - To Add or Not to Add

To Add or Not to Add Time Limit: 2000ms Memory Limit: 262144KB This problem will be judged on CodeForces. Original ID: 231C64-bit integer IO format: %I64d      Java class name: (Any) A piece of paper contains an array of n integers a1, a2, ..., an. Y

xtu summer individual 5 E - Burning Bridges

Burning Bridges Time Limit: 5000ms Memory Limit: 32768KB This problem will be judged on ZJU. Original ID: 258864-bit integer IO format: %lld      Java class name: Main Ferry Kingdom is a nice little country located on N islands that are connected by