Monday, January 21, 2019

[UVa] 1227 - The longest constant gene

Author            : Dipu Kumar Mohanto 
                    CSE, Batch - 6
                    BRUR.
Problem Statement : 1227 - The longest constant gene
Source            : UVA Online Judge
Category          : String,
Algorithm         : Suffix Automata, Longest Common Substring of 3 strings
Verdict           : Accepted
  1. #include "bits/stdc++.h"  
  2.   
  3. using namespace std;  
  4.   
  5. #define FI              freopen("in.txt", "r", stdin)  
  6. #define FO              freopen("out.txt", "w", stdout)  
  7. #define FAST            ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)  
  8.   
  9. #define FOR(i, n)       for (int i = 1; i <= n; i++)  
  10. #define For(i, n)       for (int i = 0; i < n; i++)  
  11. #define ROF(i, n)       for (int i = n; i >= 1; i--)  
  12. #define Rof(i, n)       for (int i = n-1; i >= 0; i--)  
  13. #define FORI(i, n)      for (auto i : n)  
  14. #define REP(i, a, b)    for (int i = a; i <= b; i++)  
  15.   
  16. #define ll              long long  
  17. #define ull             unsigned long long  
  18. #define vi              vector <int>  
  19. #define vl              vector <ll>  
  20. #define pii             pair <int, int>  
  21. #define pll             pair <ll, ll>  
  22. #define mk              make_pair  
  23. #define ff              first  
  24. #define ss              second  
  25. #define eb              emplace_back  
  26. #define em              emplace  
  27. #define pb              push_back  
  28. #define ppb             pop_back  
  29. #define All(a)          a.begin(), a.end()  
  30. #define memo(a, b)      memset(a, b, sizeof a)  
  31. #define Sort(a)         sort(All(a))  
  32. #define ED(a)           Sort(a), a.erase(unique(All(a)), a.end())  
  33. #define rev(a)          reverse(All(a))  
  34. #define sz(a)           (int)a.size()  
  35. #define max3(a, b, c)   max(a, max(b, c))  
  36. #define min3(a, b, c)   min(a, min(b, c))  
  37. #define maxAll(a)       *max_element(All(a))  
  38. #define minAll(a)       *min_element(All(a))  
  39. #define allUpper(a)     transform(All(a), a.begin(), :: toupper)  
  40. #define allLower(a)     transform(All(a), a.begin(), :: tolower)  
  41. #define endl            '\n'  
  42. #define nl              puts("")  
  43. #define ub              upper_bound  
  44. #define lb              lower_bound  
  45. #define Exp             exp(1.0)  
  46. #define PIE             2*acos(0.0)  
  47. #define Sin(a)          sin(((a)*PIE)/180.0)  
  48. #define EPS             1e-9  
  49.   
  50. #include "ext/pb_ds/assoc_container.hpp"  
  51. #include "ext/pb_ds/tree_policy.hpp"  
  52. using namespace __gnu_pbds;  
  53.   
  54. template <typename T> using orderset = tree <T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;  
  55.   
  56. #include "ext/rope"  
  57. using namespace __gnu_cxx;  
  58.   
  59. // rope <int> Rope;  
  60.   
  61. // int dr[] = {1, -1, 0, 0}; // 4 Direction  
  62. // int dc[] = {0, 0, 1, -1};  
  63. // int dr[] = {0, 0, 1, -1, 1, 1, -1, -1}; // 8 Direction  
  64. // int dc[] = {1, -1, 0, 0, 1, -1, 1, -1};  
  65. // int dr[] = {-1, 1, -2, -2, -1, 1, 2, 2}; // knight Moves  
  66. // int dc[] = {-2, -2, -1, 1, 2, 2, 1, -1};  
  67.   
  68. #define trace1(x)                           cerr << #x << ": " << x << endl;  
  69. #define trace2(x, y)                        cerr << #x << ": " << x << " | " << #y << ": " << y << endl;  
  70. #define trace3(x, y, z)                     cerr << #x << ": " << x << " | " << #y << ": " << y << " | " << #z << ": " << z << endl;  
  71. #define trace4(a, b, c, d)                  cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << endl;  
  72. #define trace5(a, b, c, d, e)               cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << endl;  
  73. #define trace6(a, b, c, d, e, f)            cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << " | " << #f << ": " << f << endl;  
  74.   
  75. inline int setbit(int mask, int pos)        { return mask |= (1 << pos); }  
  76. inline int resetbit(int mask, int pos)      { return mask &= ~(1 << pos); }  
  77. inline int togglebit(int mask, int pos)     { return mask ^= (1 << pos); }  
  78. inline bool checkbit(int mask, int pos)     { return (bool)(mask & (1 << pos)); }  
  79.   
  80. #define popcount(mask)                       __builtin_popcount(mask) // count set bit  
  81. #define popcountLL(mask)                     __builtin_popcountll(mask) // for long long  
  82.   
  83. inline int read()                           { int a; scanf("%d", &a); return a; }  
  84. inline ll readLL()                          { ll a; scanf("%lld", &a); return a; }  
  85. inline double readDD()                      { double a; scanf("%lf", &a); return a; }  
  86.   
  87. template <typename T> string toString(T num) { stringstream ss; ss << num; return ss.str(); }  
  88. int toInt(string s)                          { int num; istringstream iss(s); iss >> num; return num;  }  
  89. ll toLLong(string s)                         { ll num; istringstream iss(s); iss >> num; return num; }  
  90.   
  91. #define inf             1 << 28  
  92. #define mod             1000000007  
  93.   
  94. static const int maxn = 1e6 + 5;  
  95. static const int logn = 18;  
  96.   
  97. struct state  
  98. {  
  99.       int len;  
  100.       int link;  
  101.       int w;  
  102.       int v;  
  103.       map <charint> next;  
  104.       state()  
  105.       {  
  106.             len = 0;  
  107.             link = 0;  
  108.             w = 0;  
  109.             v = 0;  
  110.             next.clear();  
  111.       }  
  112. } st[maxn << 2];  
  113.   
  114. int sz, last;  
  115.   
  116. inline void init()  
  117. {  
  118.       last = sz = 0;  
  119.       st[0].len = 0;  
  120.       st[0].link = -1;  
  121.       st[0].w = inf;  
  122.       st[0].v = 0;  
  123.       st[0].next.clear();  
  124.       for (int i = 1; i < (maxn << 1); i++) st[i] = state();  
  125.       ++sz;  
  126. }  
  127.   
  128. inline void sz_extend(char c)  
  129. {  
  130.       int cur = sz++;  
  131.       st[cur].len = st[last].len + 1;  
  132.       st[cur].w = inf;  
  133.       int p;  
  134.       for (p = last; p != -1 && !st[p].next.count(c); p = st[p].link)  
  135.       {  
  136.             st[p].next[c] = cur;  
  137.       }  
  138.       if (p == -1)  
  139.       {  
  140.             st[cur].link = 0;  
  141.       }  
  142.       else  
  143.       {  
  144.             int q = st[p].next[c];  
  145.             if (st[p].len + 1 == st[q].len)  
  146.             {  
  147.                   st[cur].link = q;  
  148.             }  
  149.             else  
  150.             {  
  151.                   int clone = sz++;  
  152.                   st[clone].len = st[p].len + 1;  
  153.                   st[clone].link = st[q].link;  
  154.                   st[clone].next = st[q].next;  
  155.                   st[clone].w = inf;  
  156.                   for (; p != -1 && st[p].next[c] == q; p = st[p].link)  
  157.                   {  
  158.                         st[p].next[c] = clone;  
  159.                   }  
  160.                   st[q].link = st[cur].link = clone;  
  161.             }  
  162.       }  
  163.       last = cur;  
  164. }  
  165.   
  166. int tNode; // maximum length among all strings  
  167.   
  168. inline void buildDFA(const string &s, int len)  
  169. {  
  170.       init();  
  171.       for (int i = 0; i < len; i++) sz_extend(s[i]);  
  172.       tNode = sz;  
  173. }  
  174.   
  175. inline void LCS(string t, int len)  
  176. {  
  177.       int v = 0;  
  178.       int l = 0;  
  179.       for (int i = 0; i < len; i++)  
  180.       {  
  181.             char c = t[i];  
  182.             while (v && !st[v].next.count(c))  
  183.             {  
  184.                   v = st[v].link;  
  185.                   l = st[v].len;  
  186.             }  
  187.             if (st[v].next.count(c))  
  188.             {  
  189.                   v = st[v].next[c];  
  190.                   l++;  
  191.             }  
  192.             st[v].v = max(st[v].v, l);  
  193.       }  
  194.       for (int i = 0; i < tNode; i++)  
  195.       {  
  196.             st[st[i].link].v = max(st[st[i].link].v, st[i].v);  
  197.       }  
  198.       for (int i = 0; i < tNode; i++)  
  199.       {  
  200.             st[i].w = min(st[i].w, st[i].v);  
  201.             st[i].v = 0;  
  202.       }  
  203. }  
  204.   
  205. string arr[10];  
  206. int arr_len[10];  
  207.   
  208. int main()  
  209. {  
  210.       FI;  
  211.       FAST;  
  212.       int tc;  
  213.       cin >> tc;  
  214.       FOR(tcase, tc)  
  215.       {  
  216.             int n;  
  217.             cin >> n;  
  218.             int m = 0;  
  219.             for (int i = 0; i < n; i++)  
  220.             {  
  221.                   cin >> arr[i];  
  222.                   arr_len[i] = arr[i].length();  
  223.                   if (arr_len[i] >= arr_len[m]) m = i;  
  224.             }  
  225.             buildDFA(arr[m], arr_len[m]);  
  226.             for (int i = 0; i < n; i++)  
  227.             {  
  228.                   if (i == m) continue;  
  229.                   LCS(arr[i], arr_len[i]);  
  230.             }  
  231.             int lcs = 0;  
  232.             for (int i = 0; i < tNode; i++)  
  233.             {  
  234.                   lcs = max(lcs, min(st[i].len, st[i].w));  
  235.             }  
  236.             cout << lcs << endl;  
  237.     }  
  238.     return 0;  
  239. }  

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.