26:字符串最大跨距
- 总时间限制:
- 1000ms
- 内存限制:
- 65536kB
- 描述
-
有三个字符串S,S1,S2,其中,S长度不超过300,S1和S2的长度不超过10。想检测S1和S2是否同时在S中出现,且S1位于S2的左边,并在S中互不交叉(即,S1的右边界点在S2的左边界点的左侧)。计算满足上述条件的最大跨距(即,最大间隔距离:最右边的S2的起始点与最左边的S1的终止点之间的字符数目)。如果没有满足条件的S1,S2存在,则输出-1。
例如,S = "abcd123ab888efghij45ef67kl", S1="ab", S2="ef",其中,S1在S中出现了2次,S2也在S中出现了2次,最大跨距为:18。
- 输入
- 三个串:S1, S2, S3,其间以逗号间隔(注意,S1, S2, S3中均不含逗号和空格);
- 输出
- S1和S2在S最大跨距;若在S中没有满足条件的S1和S2,则输出-1。
- 样例输入
-
abcd123ab888efghij45ef67kl,ab,ef
- 样例输出
-
18
思路:
水题大模拟;
来,上代码:
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<algorithm> using namespace std; int len,now=,len_3[],cur=,ans_l=-,ans_r=-; char word[],word_1[][]; int main()
{
gets(word);
len=strlen(word);
for(int i=;i<len;i++)
{
if(word[i]==',')
{
len_3[now]=cur;
now++;
cur=;
continue;
}
word_1[now][cur++]=word[i];
}
len_3[now]=cur;
for(int i=;i<len_3[];i++)
{
if(word_1[][i]==word_1[][])
{
bool if_ok=true;
for(int j=i;j<=i+len_3[]-;j++)
{
if(word_1[][j]==word_1[][j-i]) continue;
if_ok=false;
break;
}
if(if_ok)
{
ans_r=i+len_3[]-;
break;
}
}
}
for(int i=len_3[]-;i>=len_3[]-;i--)
{
if(word_1[][i]==word_1[][len_3[]-])
{
bool if_ok=true;
for(int j=i;j>=i-len_3[]+;j--)
{
if(word_1[][j]==word_1[][len_3[]+j-i-]) continue;
if_ok=false;
break;
}
if(if_ok)
{
ans_l=i-len_3[]+;
break;
}
}
}
if(ans_l==-||ans_r==-||ans_l<=ans_r)
{
printf("-1\n");
}
else
{
printf("%d\n",ans_l-ans_r-);
}
return ;
}