Cod sursa(job #3278914)

Utilizator domistnSatnoianu Dominic Ioan domistn Data 21 februarie 2025 12:39:59
Problema Potrivirea sirurilor Scor 40
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 1.92 kb
#include <iostream>
#include <fstream>
#include <cstring>
#include <vector>

#define filename (string)"strmatch"

using namespace std;

ifstream fin(filename + ".in");
ofstream fout(filename + ".out");

int plog(int ba, int ex, int mod);

const int NMAX = 2e6;

struct hhash {
    int mult, mod, val, ln;

    hhash(int mult, int mod, char *s, int ln) {
        this->mult = mult;
        this->mod = mod;
        this->val = 0;
        this->ln = ln;

        for(int i = 0; i < ln; i++) {
            this->val = (1ll * this->val * mult + s[i]) % mod;
        }
    }

    void update(char toRemove, char toAdd) {
        this->val = (
            1ll * this->val +
            1ll * this->mod -
            1ll * toRemove * plog(this->mult, this->ln - 1, this->mod) % this->mod
        ) % this->mod;
        this->val = (1ll * this->val * this->mult + toAdd) % mod;
    }
};

int n, k;
char haystack[NMAX + 1], needle[NMAX + 1];
vector<int> ans;

int plog(int ba, int ex, int mod) {
    ba %= mod;
    int r = 1;
    for(int i = 1; i <= ex; i <<= 1) {
        if(i & ex) r = (1ll * r * ba) % mod;
        ba = (1ll * ba * ba) % mod;
    }
    return r;
}

void read() {
    fin >> needle >> haystack;
    n = strlen(haystack);
    k = strlen(needle);
}

void process() {
    hhash n1 = hhash(811, 666013, needle, k);
    hhash n2 = hhash(911, 1e9 + 7, needle, k);

    hhash h1 = hhash(811, 666013, haystack, k);
    hhash h2 = hhash(911, 1e9 + 7, haystack, k);

    for(int i = 0; i < n - k + 1; i++) {
        if(n1.val == h1.val && n2.val == h2.val)
            ans.push_back(i);

        h1.update(haystack[i],  haystack[i + k]);
        h2.update(haystack[i],  haystack[i + k]);
    }
}

void output() {
    // for(const auto &i : ans)
    //     cout << i << " ";

    fout << ans.size() << "\n";
    for(int i = 0; i < ans.size() && i < 1000; i++)
        fout << ans[i] << " ";
}

int main()
{
    read();
    process();
    output();
    return 0;
}