题解
2023-08-01 20:20:39
发布于:上海
32阅读
0回复
0点赞
#include "bits/stdc++.h"
using namespace std;
void setIO(string name = "") {
cin.tie(0)->sync_with_stdio(0);
if ((int)name.size()) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
int main() {
string s;
string t;
cin >> s >> t;
string censored;
for (int i = 0; i < s.size(); i++) {
censored += s[i];
if (censored.size() > t.size() &&
censored.substr(censored.size() - t.size()) == t) {
censored.resize(censored.size() - t.size());
}
}
cout << censored << endl;
}
这里空空如也
有帮助,赞一个