Cod sursa(job #169334)

Utilizator DastasIonescu Vlad Dastas Data 1 aprilie 2008 17:01:15
Problema Abc2 Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 1.62 kb
#include <cstdio>
#include <cstring>

const int maxn = 10000002;
const int maxl = 30;
const int maxc = 50001;

const int mod1 = 128213;
const int mod2 = 100021;
const int p = 73;

FILE *in = fopen("abc2.in","r"), *out = fopen("abc2.out","w");

char a[maxn];

int n, m;
char c[maxl];

int h1[mod1] = {0};
int h2[mod2] = {0};

int p1 = 1, p2 = 1;

int pow(int a, int b, int mod)
{
    int s = 1;

    for ( int i = 1; i <= b; ++i )
        s *= a,
        s %= mod;

    return s;
}

void getnr()
{
    int hash1 = 0, hash2 = 0;

    for ( int i = 0; i < n; ++i )
    {
        hash1 = (hash1 * p + c[i]) % mod1;
        hash2 = (hash2 * p + c[i]) % mod2;
    }

    h1[ hash1 ] = h2[ hash2 ] = 1;
}

int cnt;
int main()
{
    fscanf(in, "%s", a);
    m = strlen(a);

    fscanf(in, "%s", c);
    n = strlen(c);

    p1 = pow(p, n - 1, mod1);
    p2 = pow(p, n - 1, mod2);

    //for ( int i = 0; i < n; ++i )
    //    printf("%d %d\n", p1[i], p2[i]);

    getnr();

    while ( fscanf(in, "%s", c) == 1 )
        getnr();

    int hash1 = 0, hash2 = 0;
    for ( int i = 0; i < n; ++i )
    {
        hash1 = (hash1 * p + a[i]) % mod1;
        hash2 = (hash2 * p + a[i]) % mod2;
    }

    if ( h1[ hash1 ] == 1 && h2[ hash2 ] == 1 )
        ++cnt;

    for ( int i = n; i < m; ++i )
    {
         hash1 = ((hash1 - (a[i - n] * p1) % mod1 + mod1) * p + a[i]) % mod1;
         hash2 = ((hash2 - (a[i - n] * p2) % mod2 + mod2) * p + a[i]) % mod2;

        if ( h1[ hash1 ] == 1 && h2[ hash2 ] == 1 )
            ++cnt;
    }

    fprintf(out, "%d\n", cnt);

    return 0;
}