poj 3461 hash

链接:http://poj.org/problem?id=3461

思路:

hash。。。。。

AC代码:

#include
#include
#include
using namespace std;
const int base=31;
const int maxn=1000010;
typedef unsigned long long ll;
ll xp[maxn];
ll hash[maxn];
char w[10010];
char t[maxn];
int main()
{
    xp[0]=1;
    for(int i=1;i>tt;
    getchar();
    while(tt--)
    {
        gets(w);
        gets(t);
        int lw=strlen(w);
        int lt=strlen(t);
        ll num=0;
        for(int i=lw-1;i>=0;i--)
            num=num*base+w[i]-'a'+1;
        hash[lt]=0;
        for(int i=lt-1;i>=0;i--)
            hash[i]=hash[i+1]*base+t[i]-'a'+1;
        int ans=0;
        for(int i=0;i<=lt-lw;i++)
        {
            if(num==hash[i]-hash[i+lw]*xp[lw])
                ans++;
        }
        printf("%d\n",ans);
    }
    return 0;
}


 

你可能感兴趣的:(poj 3461 hash)