比赛 |
CSP2023-J模拟赛 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
切分子串 |
最终得分 |
100 |
用户昵称 |
liuyiche |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2023-10-18 19:04:29 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
string s, t;
int ans = 0;
inline bool Find(string h)
{
for (int i = 0; i+h.length()-1 < s.length(); ++i)
if(h == s.substr(i,h.length()))
return true;
return false;
}
int main()
{
freopen("cutstring.in", "r", stdin);
freopen("cutstring.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> s >> t;
for (int i = 0; i < t.length()-1; ++i)
{
string s1(t.begin(),t.begin()+i+1);
string s2(t.begin()+i+1,t.end());
if(Find(s1) == true && Find(s2) == true)
ans++;
}
cout << ans;
return 0;
}