POJ 3261 Milk Patterns (后缀数组,求可重叠的k次最长重复子串)

青旅半醒 2022-03-27 10:25 273阅读 0赞








Milk Patterns


















Time Limit: 5000MS   Memory Limit: 65536K
Total Submissions: 7586   Accepted: 3448
Case Time Limit: 2000MS

Description



Farmer John has noticed that the quality of milk given by his cows varies from day to day. On further investigation, he discovered that although he can’t predict the quality of milk from one day to the next, there are some regular patterns in the daily milk quality.


To perform a rigorous study, he has invented a complex classification scheme by which each milk sample is recorded as an integer between 0 and 1,000,000 inclusive, and has recorded data from a single cow over N (1 ≤ N ≤ 20,000) days. He wishes to find the longest pattern of samples which repeats identically at least K (2 ≤ K ≤ N) times. This may include overlapping patterns — 1 2 3 2 3 2 3 1 repeats 2 3 2 3 twice, for example.


Help Farmer John by finding the longest repeating subsequence in the sequence of samples. It is guaranteed that at least one subsequence is repeated at least K times.


Input



Line 1: Two space-separated integers: 
N and 
K 

Lines 2..
N+1: 
N integers, one per line, the quality of the milk on day 
i appears on the 
ith line.

Output



Line 1: One integer, the length of the longest pattern which occurs at least 
K times

Sample Input

  1. 8 2
    1
    2
    3
    2
    3
    2
    3
    1

Sample Output

  1. 4

Source




 


 


 

后缀数组 的入门题。

先计算好SA和height数组。

然后二分答案。二分的时候,对height进行分组,看存不存在一组的大小大于等于k

  1. /*
  2. * POJ 3261 Milk Patterns
  3. * 可重叠的k次最长重复子串
  4. * 利用后缀数组计算S和height数组
  5. * 然后二分,进行分组
  6. */
  7. #include <iostream>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <algorithm>
  11. using namespace std;
  12. const int MAXN=20010;
  13. int sa[MAXN];
  14. int t1[MAXN],t2[MAXN],c[MAXN];
  15. int rank[MAXN],height[MAXN];
  16. void build_sa(int s[],int n,int m)
  17. {
  18. int i,j,p,*x=t1,*y=t2;
  19. for(i=0;i<m;i++)c[i]=0;
  20. for(i=0;i<n;i++)c[x[i]=s[i]]++;
  21. for(i=1;i<m;i++)c[i]+=c[i-1];
  22. for(i=n-1;i>=0;i--)sa[--c[x[i]]]=i;
  23. for(j=1;j<=n;j<<=1)
  24. {
  25. p=0;
  26. for(i=n-j;i<n;i++)y[p++]=i;
  27. for(i=0;i<n;i++)if(sa[i]>=j)y[p++]=sa[i]-j;
  28. for(i=0;i<m;i++)c[i]=0;
  29. for(i=0;i<n;i++)c[x[y[i]]]++;
  30. for(i=1;i<m;i++)c[i]+=c[i-1];
  31. for(i=n-1;i>=0;i--)sa[--c[x[y[i]]]]=y[i];
  32. swap(x,y);
  33. p=1;x[sa[0]]=0;
  34. for(i=1;i<n;i++)
  35. x[sa[i]]=y[sa[i-1]]==y[sa[i]] && y[sa[i-1]+j]==y[sa[i]+j]?p-1:p++;
  36. if(p>=n)break;
  37. m=p;
  38. }
  39. }
  40. void getHeight(int s[],int n)
  41. {
  42. int i,j,k=0;
  43. for(i=0;i<=n;i++)rank[sa[i]]=i;
  44. for(i=0;i<n;i++)
  45. {
  46. if(k)k--;
  47. j=sa[rank[i]-1];
  48. while(s[i+k]==s[j+k])k++;
  49. height[rank[i]]=k;
  50. }
  51. }
  52. bool check(int n,int k,int t)
  53. {
  54. int num=1;
  55. for(int i=2;i<=n;i++)
  56. {
  57. if(height[i]>=t)
  58. {
  59. num++;
  60. if(num>=k)return true;
  61. }
  62. else num=1;
  63. }
  64. return false;
  65. }
  66. int s[MAXN];
  67. int main()
  68. {
  69. //freopen("in.txt","r",stdin);
  70. //freopen("out.txt","w",stdout);
  71. int n,k;
  72. while(scanf("%d%d",&n,&k)==2)
  73. {
  74. int Max=0;
  75. for(int i=0;i<n;i++)
  76. {
  77. scanf("%d",&s[i]);
  78. Max=max(Max,s[i]);
  79. }
  80. s[n]=0;
  81. build_sa(s,n+1,Max+1);
  82. getHeight(s,n);
  83. int l=0,r=n;
  84. int ans=0;
  85. while(l<=r)
  86. {
  87. int mid=(l+r)/2;
  88. if(check(n,k,mid))
  89. {
  90. ans=mid;
  91. l=mid+1;
  92. }
  93. else r=mid-1;
  94. }
  95. printf("%d\n",ans);
  96. }
  97. return 0;
  98. }

发表评论

表情:
评论列表 (有 0 条评论,273人围观)

还没有评论,来说两句吧...

相关阅读