Pagini recente » Cod sursa (job #3203347) | Cod sursa (job #2399077) | Cod sursa (job #3195066)
#include <fstream>
#include <vector>
#include <cstring>
using namespace std;
ifstream f("strmatch.in");
ofstream g("strmatch.out");
long long p = 1007, mod = 1000000007;
long long hasha, ctr, chash;
long long hashb1[2000005];
char a[2000005], b[2000005];
vector < int > rez;
long long pw[2000005];
int n, m;
int main() {
f >> a >> b;
n = strlen(a); m = strlen(b);
if (m < n) {
g << 0;
return 0;
}
pw[0] = 1;
for (int i = 1; i<=m; i++) {
pw[i] = (pw[i-1] * p) % mod;
}
for (int i=0; i<n; i++) {
hasha = (hasha + (a[i]+1) * pw[i]) % mod;
}
hashb[0] = (b[0]+1);
for (int i=1; i<m; i++) {
hashb[i] = (hashb[i-1] + (b[i]+1) * pw[i]) % mod;
}
for (int i=0; i+n-1<m; i++) {
if (i==0) chash = hashb[i+n-1];
else chash = (hashb[i+n-1]+mod-hashb[i-1])%mod;
if (chash == (hasha*pw[i]) % mod) {
ctr++;
if (ctr<1000)
rez.push_back(i);
}
}
g << ctr << '\n';
for (auto x:rez)
g << x << " ";
return 0;
}