搜索/模拟好题——终焉花海
程序员文章站
2022-05-30 21:25:17
...
终焉花海
题目描述
输入输出&&样例
数据范围
思路&&做法
首先看要输出任何一种解
想到搜索或者模拟
再想搜索顺序问题,发现应倒序搜索,
每次搜索当前最后一次覆盖的位置
这样的话后面的搜索就不会对前面的覆盖产生影响
所以每次在a串里匹配b串,把匹配位置换成“?”
以后搜索过程中“?”可按万能位置匹配
因为一定有解,所以当a串全部变成?就覆盖成功了
倒序输出搜索答案即可
代码
%%%%zwj巨佬
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<cmath>
#include<cstdlib>
#include<ctime>
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
inline ll read(){
char ch=' ';ll f=1;ll x=0;
while(ch<'0'||ch>'9'){if(ch=='-') f=-1;ch=getchar();}
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar();
return x*f;
}
const int N=1010;
char a[N],b[N];
int n,m;
int ans[N],cc,sum;
int main()
{
cin>>a+1;cin>>b+1;
n=strlen(a+1),m=strlen(b+1);
cc=n;sum=n;
while(true)
{
for(int i=1;i<=n;i++)
{
bool flag=true;int cnt=0;
for(int j=1;j<=m;j++)
{
if(a[i+j-1]!='?') cnt++;
if(a[i+j-1]!=b[j]&&a[i+j-1]!='?')
{
flag=false;
break;
}
}
if(flag&&cnt)
{
sum-=cnt;
ans[cc--]=i;
for(int j=i;j<=i+m-1;j++)
a[j]='?';
}
}
if(sum==0) break;
}
cout<<n-cc<<endl;
for(int i=cc+1;i<=n;i++) cout<<ans[i]<<' ';
return 0;
}
上一篇: jsp自定义标签
推荐阅读