1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
| #include <stdio.h> #include <string.h> #include <algorithm> using namespace std;
const int MAX_N = 110; const int MAX_L = MAX_N * MAX_N; char szStr[MAX_N]; int nNum[MAX_L]; int nLoc[MAX_L]; bool bVisit[MAX_N]; int sa[MAX_L], rank[MAX_L], height[MAX_L]; int wa[MAX_L], wb[MAX_L], wv[MAX_L], wd[MAX_L];
int cmp(int* r, int a, int b, int l) { return r[a] == r[b] r[a + l] == r[b + l]; }
void da(int* r, int n, int m) { int i, j, p, *x = wa, *y = wb;
for (i = 0; i < m; ++i) wd[i] = 0; for (i = 0; i < n; ++i) wd[x[i] = r[i]]++; for (i = 1; i < m; ++i) wd[i] += wd[i - 1]; for (i = n - 1; i >= 0; --i) sa[--wd[x[i]]] = i;
for (j = 1, p = 1; p < n; j *= 2, m = p) { for (p = 0, i = n - j; i < n; ++i) y[p++] = i; for (i = 0; i < n; ++i) if (sa[i] >= j) y[p++] = sa[i] - j;
for (i = 0; i < n; ++i) wv[i] = x[y[i]]; for (i = 0; i < m; ++i) wd[i] = 0; for (i = 0; i < n; ++i) wd[wv[i]]++; for (i = 1; i < m; ++i) wd[i] += wd[i - 1]; for (i = n - 1; i >= 0; --i) sa[--wd[wv[i]]] = y[i];
swap(x, y); for (p = 1, x[sa[0]] = 0, i = 1; i < n; ++i) { x[sa[i]] = cmp(y, sa[i - 1], sa[i], j)? p - 1 : p++; } } }
void calHeight(int* r, int n) { int i, j, k = 0; for (i = 1; i <= n; ++i) rank[sa[i]] = i; for (i = 0; i < n; height[rank[i++]] = k) { if (k) --k; for(j = sa[rank[i] - 1]; r[i + k] == r[j + k]; k++); } }
bool Check(int nMid, int nLen, int nN) { int nCnt = 0;
memset(bVisit, false, sizeof(bVisit)); for (int i = 2; i <= nLen; ++i) { if (nMid > height[i]) { nCnt = 0; memset(bVisit, false, sizeof(bVisit)); continue; } if (!bVisit[nLoc[sa[i - 1]]]) { bVisit[nLoc[sa[i - 1]]] = true; ++nCnt; } if (!bVisit[nLoc[sa[i]]]) { bVisit[nLoc[sa[i]]] = true; ++nCnt; } if (nCnt == nN) return true; }
return false; }
int main() { int nT;
scanf("%d", &nT); while (nT--) { int nN; int nEnd = 300; int nP = 0; scanf("%d", nN); for (int i = 1; i <= nN; ++i) { scanf("%s", szStr); char* pszStr; for (pszStr = szStr; *pszStr; ++pszStr) { nLoc[nP] = i; nNum[nP++] = *pszStr; } nLoc[nP] = nEnd; nNum[nP++] = nEnd++;
reverse(szStr, szStr + strlen(szStr)); for (pszStr = szStr; *pszStr; ++pszStr) { nLoc[nP] = i; nNum[nP++] = *pszStr; } nLoc[nP] = nEnd; nNum[nP++] = nEnd++; } nNum[nP] = 0;
da(nNum, nP + 1, nEnd); calHeight(nNum, nP);
int nLeft = 1, nRight = strlen(szStr), nMid; int nAns = 0; while (nLeft <= nRight) { nMid = (nLeft + nRight) / 2; if (Check(nMid, nP, nN)) { nLeft = nMid + 1; nAns = nMid; } else nRight = nMid - 1; } printf("%d\n", nAns); }
return 0; }
|