Advertisement
yeskendir_sultanov

Хэш подстроки

Mar 3rd, 2025
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. #define ull unsigned long long
  3.  
  4. using namespace std;
  5.  
  6. const int N = 1e5 + 3;
  7. const pair<ull, ull> base = {29, 37};
  8.  
  9. pair<ull, ull> p[N], h[N];
  10.  
  11. pair<ull, ull> get(int i, int j) {
  12.     if (i == 0) {
  13.         return h[j];
  14.     }
  15.     return {h[j].first - h[i - 1].first * p[j - i + 1].first,
  16.             h[j].second - h[i - 1].second * p[j - i + 1].second};
  17. }
  18.  
  19. int main() {
  20.     string s;
  21.     cin >> s;
  22.     int n = s.size();
  23.     p[0] = {1, 1};
  24.     for (int i = 1; i <= n; ++i) {
  25.         p[i].first = p[i - 1].first * base.first;
  26.         p[i].second = p[i - 1].second * base.second;
  27.     }
  28.    
  29.     h[0] = {s[0], s[0]};
  30.     for (int i = 1; i < n; ++i) {
  31.         h[i].first = h[i - 1].first * base.first + s[i];
  32.         h[i].second = h[i - 1].second * base.second + s[i];
  33.     }
  34.    
  35.     int q;
  36.     cin >> q;
  37.     while (q--) {
  38.         int a, b, c, d;
  39.         cin >> a >> b >> c >> d;
  40.         if (get(a - 1, b - 1) == get(c - 1, d - 1)) {
  41.             cout << "Yes" << endl;
  42.         } else {
  43.             cout << "No" << endl;
  44.         }
  45.     }
  46.    
  47.     return 0;
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement