[poj 3461] Oulipo 중국어 문제 & 문제 풀이 & 코드(C++)

8008 단어 poj
** Oulipo
** Time Limit: 1000MS Memory Limit: 65536K
Description
The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter ‘e’. He was a member of the Oulipo group. A quote from the book:
Tout avait Pair normal, mais tout s’affirmait faux. Tout avait Fair normal, d’abord, puis surgissait l’inhumain, l’affolant. Il aurait voulu savoir où s’articulait l’association qui l’unissait au roman : stir son tapis, assaillant à tout instant son imagination, l’intuition d’un tabou, la vision d’un mal obscur, d’un quoi vacant, d’un non-dit : la vision, l’avision d’un oubli commandant tout, où s’abolissait la raison : tout avait l’air normal mais…
Perec would probably have scored high (or rather, low) in the following contest. People are asked to write a perhaps even meaningful text on some subject with as few occurrences of a given “word” as possible. Our task is to provide the jury with a program that counts these occurrences, in order to obtain a ranking of the competitors. These competitors often write very long texts with nonsense meaning; a sequence of 500,000 consecutive ‘T’s is not unusual. And they never use spaces.
So we want to quickly find out how often a word, i.e., a given string, occurs in a text. More formally: given the alphabet {‘A’, ‘B’, ‘C’, …, ‘Z’} and two finite strings over that alphabet, a word W and a text T, count the number of occurrences of W in T. All the consecutive characters of W must exactly match consecutive characters of T. Occurrences may overlap.
Input
The first line of the input file contains a single number: the number of test cases to follow. Each test case has the following format:
One line with the word W, a string over {‘A’, ‘B’, ‘C’, …, ‘Z’}, with 1 ≤ |W| ≤ 10,000 (here |W| denotes the length of the string W). One line with the text T, a string over {‘A’, ‘B’, ‘C’, …, ‘Z’}, with |W| ≤ |T| ≤ 1,000,000. Output
For every test case in the input file, the output should contain a single number, on a single line: the number of occurrences of the word W in the text T.
Sample Input
3 BAPC BAPC AZA AZAZAZA VERDI AVERDXIVYERDIAN
Sample Output
1 3 0
중국어 제목: 간단하게 말하면 n조의 데이터를 주고 각 조의 데이터에 두 개의 문자열 s와 t를 포함한다. 문자열 s가 문자열 t에 나타난 횟수를 찾아낸다. 예:ababa에서 문자열 b가 2번 나타나고 출력이 2번이다.
간단하면서도 뚜렷한 kmp. 여기서 kmp 템플릿을 제시하는데 기초가 있는 학생들은 스스로 이해할 수 있고 기초가 없는 어린이 신발 잎은 코드를 직접 외울 수 있다.블로거는 본인의 본보기가 아직 철봉이라고 생각한다!
그러나 어떻게든 넥스수 그룹의 성질을 기억해야 한다. 넥스[i]=j는 문자열 중 [0...i]와 [j-i...i]는 같다!!!!!!!!!!문제는 주로 nx의 수조 변형으로 풀었다
템플릿은 다음과 같습니다.
inline void get_nex() { int j=-1; for (int i=0;i<tlen;i++) { while (t[i]!=t[j+1] && j!=-1) j=nex[j]; if (t[i]==t[j+1] && i!=0) j++; nex[i]=j; } } inline void kmp() { int j=-1; for (int i=0;i<slen;i++) { while (s[i]!=t[j+1] && j!=-1) j=nex[j]; if (s[i]==t[j+1]) j++; if (j==tlen-1) ans++,j=nex[j]; } }

사용할 때 이 두 함수를 순서대로 사용하면 nx수 그룹을 구할 수 있습니다.ans는 긴 줄에 짧은 줄이 나타나는 횟수입니다. nx수 그룹의 크기가 그 짧은 줄과 같음을 주의하십시오.
이 문제의 코드는 다음과 같습니다.
#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
char s[1000005],t[200000];
int slen,tlen;
int nex[200000];//nex         
int ans,a,b,c,d,n,m;
inline void get_nex()
{
        int j=-1;
        for (int i=0;i<tlen;i++)
        {
                while  (t[i]!=t[j+1] && j!=-1)      j=nex[j];
                if (t[i]==t[j+1] && i!=0) j++;
                nex[i]=j;
        }
}
inline void kmp()
{
        int j=-1;
        for (int i=0;i<slen;i++)
        {
                while  (s[i]!=t[j+1] && j!=-1) j=nex[j];
                if (s[i]==t[j+1])     j++;
                if (j==tlen-1)  ans++,j=nex[j];
        }
}
int main()
{
    scanf("%d",&n);
    for (int i=1;i<=n;i++)
    {
        ans=0;
        scanf("%s %s",t,s);
        slen=strlen(s);
        tlen=strlen(t);//                   ,        
        get_nex();
        kmp();
        printf("%d
"
,ans); } }

좋은 웹페이지 즐겨찾기