POJ 3294 Life Forms (后缀数组)

Life Forms
Time Limit: 5000MS Memory Limit: 65536K
Total Submissions: 7270 Accepted: 1998

Description

You may have wondered why most extraterrestrial life forms resemble humans, differing by superficial traits such as height, colour, wrinkles, ears, eyebrows and the like. A few bear no human resemblance; these typically have geometric or amorphous shapes like cubes, oil slicks or clouds of dust.

The answer is given in the 146th episode of Star Trek - The Next Generation, titled The Chase. It turns out that in the vast majority of the quadrant's life forms ended up with a large fragment of common DNA.

Given the DNA sequences of several life forms represented as strings of letters, you are to find the longest substring that is shared by more than half of them.

Input

Standard input contains several test cases. Each test case begins with 1 ≤ n ≤ 100, the number of life forms. n lines follow; each contains a string of lower case letters representing the DNA sequence of a life form. Each DNA sequence contains at least one and not more than 1000 letters. A line containing 0 follows the last test case.

Output

For each test case, output the longest string or strings shared by more than half of the life forms. If there are many, output all of them in alphabetical order. If there is no solution with at least one letter, output "?". Leave an empty line between test cases.

Sample Input

3
abcdefg
bcdefgh
cdefghi
3
xxx
yyy
zzz
0

Sample Output

bcdefg
cdefgh

?

Source

 

 

依旧二分判定,只是要先找出最大长度,然后在根据这个长度再判定输出。对于长度相同的,用tag标记以免重复。

 

#include<cstdio>//最长公共子串
#include<cstring>
#define Max(a, b)   a>b?a:b
const int maxn = 101001 ;
int wa[maxn], wb[maxn], wv[maxn], ws[maxn], rank[maxn], height[maxn], sa[maxn], s[maxn], loc[maxn] ;
bool vis[1001] ;
char str[1001], ans[1001] ;
int n ;
int cmp(int *r,int a,int b,int l){
    return r[a]==r[b] && r[a+l]==r[b+l] ;
}
int abs(int a){
    return a<0?-a:a ;
}
void da(int *r, int n, int m){
    int i, j, p, *x = wa, *y = wb, *t ;
    for(i=0; i<m; i++) ws[i] = 0 ;
    for(i=0; i<n; i++) ws[x[i]=r[i]] ++ ;
    for(i=1; i<m; i++) ws[i] += ws[i-1] ;
    for(i=n-1; i>=0; i--) sa[--ws[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++) ws[i] = 0 ;
        for(i=0; i<n; i++) ws[wv[i]] ++ ;
        for(i=1; i<m; i++) ws[i] += ws[i-1] ;
        for(i=n-1; i>=0; i--) sa[--ws[wv[i]]] = y[i] ;
        for(t=x, x=y, y=t, 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 ++ ;
    }
    return ;
}
void calheight(int *r, int n){
    int i, j, k = 0 ;
    for(i=1; i<=n; i++) rank[sa[i]] = i ;//获取rank值 O(n)
    for(i=0; i<n; height[rank[i++]]=k)
        for(k?k--:0, j=sa[rank[i]-1]; r[i+k]==r[j+k]; k++) ;
    return ;
}
int check(int mid, int len){
    int count = 0 ;
    memset(vis, false, sizeof(vis)) ;
    for(int i=2; i<=len; i++){
        if(height[i]<mid){
            memset(vis, false, sizeof(vis)) ;
            count = 0 ;
            continue ;
        }    
        if(!vis[loc[sa[i-1]]])  vis[loc[sa[i-1]]] = true, count ++ ;
        if(!vis[loc[sa[i]]])    vis[loc[sa[i]]] = true, count ++ ;
        if(count>n/2)        return 1 ;
    }
    return 0 ;
}
void print(int mid, int len){
    int count = 0, tag = 0 ;
    memset(vis, false, sizeof(vis)) ;
    for(int i=2; i<=len; i++){
        if(height[i]<mid){
            memset(vis, false, sizeof(vis)) ;
            count = 0 ;
            tag = 0 ;
            continue ;
        }    
        if(!vis[loc[sa[i-1]]])  vis[loc[sa[i-1]]] = true, count ++ ;
        if(!vis[loc[sa[i]]])    vis[loc[sa[i]]] = true, count ++ ;
        if(count>n/2&&!tag){
            for(int j=0; j<mid; j++)
                ans[j] = s[sa[i]+j] + 'a' - 1 ;
            ans[mid] = '\0' ;
            printf("%s\n", ans) ;
            tag = 1 ;
        }
    }
}
int main(){
    int i, j, m, max, t, flag, x, temp, min ;
    while(~scanf("%d", &n)&&n){
        flag = 0 ;
        m = 0 ;
        min = maxn ;
        temp = 30 ;
        for(i=0; i<n; i++){
            scanf("%s", str) ;
            if(strlen(str)<min)    min = strlen(str) ;
            for(j=0; str[j]; j++){
                s[m] = str[j] - 'a' + 1 ;
                loc[m++] = i ;
            }
            s[m] = temp ;
            loc[m++] = temp ++ ;
        }
        s[m] = 0 ;
        da(s, m+1, temp) ;
        calheight(s, m) ;
        int left=0, right=min, mid ;
        while(right>=left){
            mid = (right + left) / 2 ;
            if(check(mid, m)){
                left = mid + 1 ;
                flag = mid ;
            }
            else
                right = mid - 1 ;
        }
        if(flag){
            print(flag, m) ;
            printf("\n") ;
        }
        else
            printf("?\n\n") ;
    }
    return 0 ;}

 

 

下面我的代码 RE

 

#include<cstdio>
#include<cstring>

const int maxn=111111;

int wa[maxn],wb[maxn],wv[maxn],ws[maxn];
int rank[maxn],height[maxn],sa[maxn],s[maxn],loc[maxn];
bool vis[1010];
char str[1010],ans[1010];

int n;

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,*t;
    for(i=0;i<m;i++) ws[i]=0;
    for(i=0;i<n;i++) ws[x[i]]=r[i]++;
    for(i=1;i<m;i++) ws[i]+=ws[i-1];
    for(i=n-1;i>=0;i--) sa[--ws[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++) ws[i]=0;
        for(i=0;i<n;i++) ws[wv[i]]++;
        for(i=1;i<m;i++) ws[i]+=ws[i-1];
        for(i=n-1;i>=0;i--) sa[--ws[wv[i]]]=y[i];
        for(t=x,x=y,y=t,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)
        for(k?k--:0,j=sa[rank[i]-1];r[i+k]==r[j+k];k++) ;
}

int check(int mid,int len){
    int count=0;
    memset(vis,0,sizeof(vis));
    for(int i=2;i<=len;i++){
        if(height[i]<mid){
            memset(vis,0,sizeof(vis));
            count=0;
            continue;
        }
        if(!vis[loc[sa[i-1]]])
            vis[loc[sa[i-1]]]=true,count++;
        if(!vis[loc[sa[i]]])
            vis[loc[sa[i]]]=true,count++;
        if(count>n/2)
            return 1;
    }
    return 0;
}

void print(int mid,int len){
    int count=0,tag=0;
    memset(vis,0,sizeof(vis));
    for(int i=2;i<=len;i++){
        if(height[i]<mid){
            memset(vis,0,sizeof(vis));
            count=0;
            tag=0;
            continue;
        }
        if(!vis[loc[sa[i-1]]])
            vis[loc[sa[i-1]]]=true,count++;
        if(!vis[loc[sa[i]]])
            vis[loc[sa[i]]]=true,count++;
        if(count>n/2 && !tag){
            for(int j=0;j<mid;j++)
                ans[j]=s[sa[i]+j]+'a'-1;
            ans[mid]='\0';
            printf("%s\n",ans);
            tag=1;
        }
    }
}

int main(){

    //freopen("input.txt","r",stdin);

    int i,j,m,flag,temp,min;
    while(~scanf("%d",&n) && n){
        flag=0;
        m=0;
        min=maxn;
        temp=30;
        for(i=0;i<n;i++){
            scanf("%s",str);
            if(strlen(str)<min)
                min=strlen(str);
            for(j=0;str[j]!='\0';j++){
                s[m]=str[j]-'a'+1;
                loc[m++]=i;
            }
            s[m]=temp;
            loc[m++]=temp++;
        }
        s[m]=0;
        da(s,m+1,temp);
        calheight(s,m);
        int left=0,right=min,mid;
        while(right>=left){
            mid=(left+right)>>1;
            if(check(mid,m)){
                left=mid+1;
                flag=mid;
            }else
                right=mid-1;
        }
        if(flag){
            print(flag,m);
            printf("\n");
        }else
            printf("?\n\n");
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/jackge/archive/2013/04/18/3029416.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值