当前位置:网站首页>Ural1517 freedom of choice [suffix array: longest common continuous substring]
Ural1517 freedom of choice [suffix array: longest common continuous substring]
2022-06-29 10:11:00 【Yekaterina 2】
Freedom of Choice
Time limit: 2.0 second
Memory limit: 64 MB
Background
Before Albanian people could bear with the freedom of speech (this story is fully described in the problem “Freedom of speech”), another freedom - the freedom of choice - came down on them. In the near future, the inhabitants will have to face the first democratic Presidential election in the history of their country.
Outstanding Albanian politicians liberal Mohammed Tahir-ogly and his old rival conservative Ahmed Kasym-bey declared their intention to compete for the high post.
Problem
According to democratic traditions, both candidates entertain with digging dirt upon each other to the cheers of their voters’ approval. When occasion offers, each candidate makes an election speech, which is devoted to blaming his opponent for corruption, disrespect for the elders and terrorism affiliation. As a result the speeches of Mohammed and Ahmed have become nearly the same, and now it does not matter for the voters for whom to vote.
The third candidate, a chairman of Albanian socialist party comrade Ktulhu wants to make use of this situation. He has been lazy to write his own election speech, but noticed, that some fragments of the speeches of Mr. Tahir-ogly and Mr. Kasym-bey are completely identical. Then Mr. Ktulhu decided to take the longest identical fragment and use it as his election speech.
Input
The first line contains the integer number N (1 ≤ N ≤ 100000). The second line contains the speech of Mr. Tahir-ogly. The third line contains the speech of Mr. Kasym-bey. Each speech consists of N capital latin letters.
Output
You should output the speech of Mr. Ktulhu. If the problem has several solutions, you should output any of them.
Sample
input
28
VOTEFORTHEGREATALBANIAFORYOU
CHOOSETHEGREATALBANIANFUTURE
output
THEGREATALBANIA
The question : Find the longest common continuous substring of two strings
Positive solution : Connect a string , Find the suffix array and height Array , Find a common substring in two strings .
Code :
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
const int N = 400000+5;
bool vis[110];
int wa[N],wb[N],wv[N],c[N],height[N],sa[N],pos[N],len[110],ranks[N],s[N];
char str[N];
int n;
bool 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 *sa,int n,int m){
int i,j,p,*x=wa,*y=wb,*t;
for(i=0;i<m;i++) c[i]=0;
for(int i=0;i<n;i++) c[x[i]=r[i]]++;
for(int i=1;i<m;i++)c[i]+=c[i-1];
for(int i=n-1;i>=0;i--) sa[--c[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++) c[i]=0;
for(i=0;i<n;i++) c[wv[i]]++;
for(i=1;i<m;i++) c[i]+=c[i-1];
for(i=n-1;i>=0;i--) sa[--c[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 *sa,int n){
int i,j,k=0;
for(i=1;i<=n;i++) ranks[sa[i]]=i;
for(i=0;i<n;height[ranks[i++]]=k)
for(k?k--:0,j=sa[ranks[i]-1];r[i+k]==r[j+k];k++);
return ;
}
void solve(int p){
int p1=-1,maxlen=0;
for(int i=2;i<p;i++){
int a1=sa[i-1],a2=sa[i];
if(a1>a2)swap(a1,a2);
if(a1>=0&&a1<n&&a2>=n+1&&a2<2*n+1)
{
if(height[i]>maxlen)
{
maxlen=height[i];
p1=a1;
}
}
}
//cout<<1<<endl;
// cout<<p1<<endl;
for(int i=p1;i<p1+maxlen;i++)
printf("%c",s[i]+'A'-1);
}
int main(){
int t=30;
scanf("%d",&n);
int p=0;
for(int i=1;i<=2;i++){
scanf(" %s",str);
int l=strlen(str);
for(int j=0;j<l;j++) s[p++]=str[j]-'A'+1;
s[p++]=t++;
}
// cout<<p<<endl;
s[p-1]=0;
da(s,sa,p,t);
calheight(s,sa,p-1);
solve(p);
return 0;
}
边栏推荐
猜你喜欢
随机推荐
Flutter 基础组件之 Text
Alibaba cloud firewall configuration, multiple settings (iptables and firewall)
Flutter 基础组件之 Container
gSoap例子——calc
Using rancher to build kubernetes cluster
2019icpc上海区域赛赛后总结
520 钻石争霸赛 2021
Rikka with Cake(线段树+线段树)
L2-025 分而治之 (25 分)
EDA与VHDL题库
十六制计数器和流水灯
JNI. H description
走迷宫 bfs 中等+——最后的编程挑战
manacher
JVM之TLAB
蛇形填数
L1-009 N个数求和 (20 分)
Listview of the basic component of the shutter
RecyclerView 粘性(悬浮)头部
F5 BIG-IP iControl REST命令执行(CVE-2022-1388)








