nowcoder 白兔的字符串

题意:输入一个字符串,接下来n个字符,问每个字符串有多少个子串是和原串循环同构的

题解:可以用hash水过...把原串所有循环同构的hash值放入set,然后对每个字符串可以找到所有的子串,这里的set用unordered_set就能过

#include <bits/stdc++.h>
#define maxn 1000010
#define INF 0x3f3f3f3f
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
char s[maxn];
const ull B = 1e9+7;
ull fa;
unordered_set<ull >mp;
int ans, n, l;
void init(int len) {
    ull ah = 0;
    for(int i=0; i<len; i++)
        ah = ah*B+s[i];
    mp.insert(ah);
    fa = 1;
    for(int i=1; i<len; i++) fa *= B;
    for(int i=0; i<len; i++) {
        mp.insert(ah);
        ah = (ah-s[i]*fa)*B+s[i];
    }
}
int main() {
    scanf("%s", s);
    int len = strlen(s);
    init(len);
    scanf("%d", &n);
    for(int i=0; i<n; i++) {
        scanf("%s", s);
        l = strlen(s);
        ans = 0;
        if(l >= len) {
            ull ah = 0;
            for(int j = 0; j < len; j++)
                ah = ah*B+s[j];
            if(mp.count(ah)) ans++;
            for(int j=len; j<l; j++) {
                ah = (ah-s[j-len]*fa)*B+s[j];
                if(mp.count(ah)) ans++;
            }
        }
        printf("%d\n", ans);
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/Noevon/p/8541983.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值