比赛 |
CSP2023-J模拟赛 |
评测结果 |
WWWWWWWWWWWWWWWWWWWW |
题目名称 |
切分子串 |
最终得分 |
0 |
用户昵称 |
llhy |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2023-10-18 18:51:57 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
string t,s;
int main(){
freopen("cutstring.in","r",stdin);
freopen("cutstring.out","w",stdout);
cin>>s>>t;
int ans=0;
int tl=t.size();
if(tl!=1)tl--;
for(int i=0;i<tl;i++){
string t1,t2;
for(int j=0;j<=i;j++)t1+=t[j];
for(int j=i+1;j<=t.size();j++)t2+=t[j];
int o=0,p=1;
bool fl=0;
while(p<=s.size()&&o<=s.size()){
while(t1[p-o]==s[p])p++;
if(p-o==t1.size()){
fl=1;
break;
}
else{
o++;
p=o;
}
}
if(fl){
int o=0,p=1;
while(p<=s.size()&&o<=s.size()){
while(t2[p-o]==s[p])p++;
if(p-o==t2.size()){
ans++;
break;
}
else{
o++;
p=o;
}
}
}
}
cout<<ans<<endl;
fclose(stdin);
fclose(stdout);
return 0;
}