程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> poj 2774 Long Long Message(後綴數組)

poj 2774 Long Long Message(後綴數組)

編輯:關於C++
??

題意:給定兩個字符串A 和B,求最長公共子串。

思路:將兩個字符串連接起來中間用一個沒出現過的符號分割,

所以答案為滿足後綴在不同的串中且height值最大的height值

 

#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include 
#include
#include 
#include
#define eps 1e-6 
#define LL long long  
using namespace std;  

const int maxn = 200000 + 200;
//const int INF = 0x3f3f3f3f;
char str1[100010], str2[100010];

struct SuffixArray {  
	
    int s[maxn];      /// 原始字符數組(最後一個字符應必須是0,而前面的字符必須非0)  
    int sa[maxn];     // 後綴數組,sa[0]一定是n-1,即最後一個字符  
    int rank[maxn];   // 名次數組  
    int height[maxn]; // height數組  
    int t[maxn], t2[maxn], c[maxn]; // 輔助數組  
    int n; // 字符個數  
  
    void clear() { n = 0; memset(sa, 0, sizeof(sa)); }  
  
    /// m為最大字符值加1。!!! 調用之前需設置好s和n  
    void build_sa(int m) {  
 	    int i, *x = t, *y = t2;  
    	for(i = 0; i < m; i++) c[i] = 0;  
	    for(i = 0; i < n; i++) c[x[i] = s[i]]++;  
    	for(i = 1; i < m; i++) c[i] += c[i-1];  
	    for(i = n-1; i >= 0; i--) sa[--c[x[i]]] = i;  
    	for(int k = 1; k <= n; k <<= 1) {  
      		int p = 0;  
      		for(i = n-k; i < n; i++) y[p++] = i;  
      		for(i = 0; i < n; i++) if(sa[i] >= k) y[p++] = sa[i]-k;  
      		for(i = 0; i < m; i++) c[i] = 0;  
      		for(i = 0; i < n; i++) c[x[y[i]]]++;  
      		for(i = 0; i < m; i++) c[i] += c[i-1];  
      		for(i = n-1; i >= 0; i--) sa[--c[x[y[i]]]] = y[i];  
      		swap(x, y);  
      		p = 1; x[sa[0]] = 0;  
      		for(i = 1; i < n; i++)  
      			x[sa[i]] = y[sa[i-1]]==y[sa[i]] && y[sa[i-1]+k]==y[sa[i]+k] ? p-1 : p++;  
      		if(p >= n) break;  
      		m = p;  
    	}  
  	}  
  
    void build_height() {  
    	int i, j, k = 0;  
    	for(i = 0; i < n; i++) rank[sa[i]] = i;  
    	for(i = 0; i < n; i++) {  
        	if(k) k--;  
      		j = sa[rank[i]-1];  
      		while(s[i+k] == s[j+k]) k++;  
      		height[rank[i]] = k;  
    	}  
  	}  
} sa;

void init() {
	sa.clear();
	int len1 = strlen(str1), len2 = strlen(str2);
	for(int i = 0; i < len1; i++) sa.s[i] = str1[i] - 'a' + 1;
	for(int i = 0; i < len2; i++) sa.s[len1+i+1] = str2[i] - 'a' + 1;
	sa.s[len1] = 27; sa.s[len1+len2+1] = 0;
	sa.n = len1 + len2 + 2;
	sa.build_sa(30);
	sa.build_height();
}

void solve() {
	int ans = 0;
	int len1 = strlen(str1);
	for(int i = 1; i < sa.n; i++) {
		if(sa.height[i] > ans)
			if(sa.sa[i-1]len1 || sa.sa[i]len1)
				ans = sa.height[i]; 
	}
	cout << ans << endl;
}

int main() {
	//freopen(input.txt, r, stdin);
	while(scanf(%s%s, str1, str2) == 2) {
		init();
		solve();
	}
	return 0;
}




 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved