Advertisement
yeskendir_sultanov

Наибольшая подстрока

Mar 3rd, 2025
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.68 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 = 1e4 + 3;
  7. const ull base = 37;
  8.  
  9. ull p[N], h[11][N];
  10. string s[11];
  11. int m;
  12.  
  13. ull get(int k, int i, int j) {
  14.     if (i == 0) {
  15.         return h[k][j];
  16.     }
  17.     return h[k][j] - h[k][i - 1] * p[j - i + 1];
  18. }
  19.  
  20. int check(int len) {
  21.     map<ull, int> cnt;
  22.    
  23.     for (int i = 1; i <= m; ++i) {
  24.         set<ull> cur;
  25.         for (int x = 0, y = len - 1; y < s[i].size(); ++x, ++y) {
  26.             ull curHash = get(i, x, y);
  27.             if (cur.count(curHash) == 0) {
  28.                 cnt[curHash]++;
  29.                 if (cnt[curHash] == m) {
  30.                     return x;
  31.                 }
  32.             }
  33.             cur.insert(curHash);
  34.         }
  35.     }
  36.    
  37.     return -1;
  38. }
  39.  
  40. int main() {
  41.     cin >> m;
  42.     int low = 1, high = 1e4;
  43.     for (int i = 1; i <= m; ++i) {
  44.         cin >> s[i];
  45.         high = min(high, (int)(s[i].size()));
  46.     }
  47.    
  48.     p[0] = 1;
  49.     for (int i = 1; i < N; ++i) {
  50.         p[i] = p[i - 1] * base;
  51.     }
  52.    
  53.     for (int i = 1; i <= m; ++i) {
  54.         h[i][0] = (ull)(s[i][0]);
  55.         for (int j = 1; j < s[i].size(); ++j) {
  56.             h[i][j] = (h[i][j - 1] * base + s[i][j]);
  57.         }
  58.     }
  59.    
  60.     int ans = 0, pos = -1;
  61.    
  62.     while (low <= high) {
  63.         int mid = (low + high) / 2;
  64.         int curRes = check(mid);
  65.         if (curRes != -1) {
  66.             ans = mid;
  67.             pos = curRes;
  68.             low = mid + 1;
  69.         } else {
  70.             high = mid - 1;
  71.         }
  72.     }
  73.    
  74.     if (ans > 0 && pos != -1) {
  75.         cout << s[m].substr(pos, ans);
  76.     }
  77.    
  78.     return 0;
  79. }
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement