summaryrefslogtreecommitdiff
path: root/content/string/rollingHashCf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'content/string/rollingHashCf.cpp')
-rw-r--r--content/string/rollingHashCf.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/content/string/rollingHashCf.cpp b/content/string/rollingHashCf.cpp
new file mode 100644
index 0000000..84b2e4e
--- /dev/null
+++ b/content/string/rollingHashCf.cpp
@@ -0,0 +1,17 @@
+// M = 1.7e9 + 9, 1e18L + 9, 2.2e18L + 7
+struct Hash {
+ static constexpr ll M = 3e18L + 37;
+ vector<ll> pref = {0}, power = {1};
+
+ Hash(const string& s, ll Q) { // Q Random in [SIGMA+1, M)
+ for (auto c : s) { // c > 0
+ pref.push_back((mul(pref.back(), Q) + c + M) % M);
+ power.push_back(mul(power.back(), Q));
+ }}
+
+ ll operator()(int l, int r) {
+ return (pref[r] - mul(power[r-l], pref[l]) + M) % M;
+ }
+
+ static ll mul(__int128 a, ll b) {return a * b % M;}
+};