Advertisement
Dmaxiya

前缀总分 参考代码

Apr 3rd, 2025
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.23 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long LL;
  5. const int maxn = 200 + 100;
  6. const int maxcnt = 200 * 200 + 100;
  7. const int Size = 26;
  8.  
  9. struct Trie {
  10.     int root, cnt;
  11.     int tree[maxcnt][Size];
  12.     int val[maxcnt];
  13.  
  14.     int create() {
  15.         ++cnt;
  16.         memset(tree[cnt], 0, sizeof(tree[cnt]));
  17.         val[cnt] = 0;
  18.         return cnt;
  19.     }
  20.  
  21.     void init() {
  22.         cnt = 0;
  23.         root = create();
  24.     }
  25.  
  26.     inline int id(const char &ch) {
  27.         return ch - 'a';
  28.     }
  29.  
  30.     int add(char *s) {
  31.         int ret = 0;
  32.         int pos = root;
  33.         for(int i = 0; s[i] != '\0'; ++i) {
  34.             int w = id(s[i]);
  35.             if(tree[pos][w] == 0) {
  36.                 tree[pos][w] = create();
  37.             }
  38.             pos = tree[pos][w];
  39.             ret += val[pos];
  40.             ++val[pos];
  41.         }
  42.         return ret;
  43.     }
  44.  
  45.     int remove(char *s) {
  46.         int ret = 0;
  47.         int pos = root;
  48.         for(int i = 0; s[i] != '\0'; ++i) {
  49.             int w = id(s[i]);
  50.             pos = tree[pos][w];
  51.             --val[pos];
  52.             ret += val[pos];
  53.         }
  54.         return ret;
  55.     }
  56.  
  57.     int query(char *s) {
  58.         int ret = 0;
  59.         int pos = root;
  60.         for(int i = 0; s[i] != '\0'; ++i) {
  61.             int w = id(s[i]);
  62.             if (tree[pos][w] == 0) {
  63.                 return ret;
  64.             }
  65.             pos = tree[pos][w];
  66.             ret += val[pos];
  67.         }
  68.         return ret;
  69.     }
  70. };
  71.  
  72. int n, ans, tmp;
  73. char str[maxn][maxn];
  74. Trie t;
  75.  
  76. int main() {
  77. #ifdef ExRoc
  78.     freopen("test.txt", "r", stdin);
  79. #endif // ExRoc
  80.     ios::sync_with_stdio(false);
  81.  
  82.     cin >> n;
  83.     ans = 0;
  84.     t.init();
  85.     for (int i = 0; i < n; ++i) {
  86.         cin >> str[i];
  87.         ans += t.add(str[i]);
  88.     }
  89.     tmp = ans;
  90.     for (int i = 0; i < n; ++i) {
  91.         tmp -= t.remove(str[i]);
  92.         for (int j = 0; str[i][j] != '\0'; ++j) {
  93.             char ch = str[i][j];
  94.             for (char k = 'a'; k <= 'z'; ++k) {
  95.                 str[i][j] = k;
  96.                 ans = max(ans, tmp + t.query(str[i]));
  97.             }
  98.             str[i][j] = ch;
  99.         }
  100.         tmp += t.add(str[i]);
  101.     }
  102.     cout << ans << endl;
  103.  
  104.     return 0;
  105. }
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement