标签:poj 3080 blue jeans the genographic proj
~~~~
题意就是找m组序列的最长连续公共子序列。
原来可以直接枚举。
从大到小枚举第一条序列长度的子序列,看下面m-1组序列是否有,找到的第一个必然是最优的(也是一个优化吧);
题目链接:http://poj.org/problem?id=3080
~~~~
#include<iostream> #include<cstring> #include<algorithm> #include<string> using namespace std; const int l=60; string str[10]; int main() { int T; cin>>T; while(T--) { int n; cin>>n; for(int i=0;i<n;i++) cin>>str[i]; int flag=0; string ans=""; for(int len=l;len>=3;len--) { for(int i=0;i+len-1<l;i++) { int ok=1; //枚举第一个序列由i始,长度为len的子序列。 string t=str[0].substr(i,len); for(int j=1;j<n;j++) { //若无: if(str[j].find(t)==string::npos) { ok=0; break; } } //注意要按字典序。 if(ok && (ans=="" || ans>t)) ans=t; } if(ans!="") { flag=1; break; } } if(flag) cout<<ans<<endl; else cout<<"no significant commonalities"<<endl; } return 0; }
POJ 3080 Blue Jeans.,布布扣,bubuko.com
标签:poj 3080 blue jeans the genographic proj
原文地址:http://blog.csdn.net/darwin_/article/details/38488259