mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 18:48:48 +00:00
P4824 [USACO15FEB] Censoring S
https://www.luogu.com.cn/record/84303219
This commit is contained in:
parent
24558c0c98
commit
71e84c055e
51
Luogu/P4824/P4824.cpp
Normal file
51
Luogu/P4824/P4824.cpp
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <cmath>
|
||||||
|
#include <stack>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
const int N = 1e6 + 5;
|
||||||
|
const int hash = 233333;
|
||||||
|
|
||||||
|
int cnt;
|
||||||
|
char st[N];
|
||||||
|
std::string s, t;
|
||||||
|
unsigned long long p = 1, h[N], t_hash;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
cin >> s >> t;
|
||||||
|
|
||||||
|
int n = s.size();
|
||||||
|
int m = t.size();
|
||||||
|
s = ' ' + s;
|
||||||
|
|
||||||
|
for (char c : t) {
|
||||||
|
t_hash = t_hash * hash + c;
|
||||||
|
p *= hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
st[++cnt] = s[i];
|
||||||
|
|
||||||
|
h[cnt] = h[cnt - 1] * hash + s[i];
|
||||||
|
|
||||||
|
if (cnt >= m && h[cnt] - h[cnt - m] * p == t_hash) {
|
||||||
|
cnt -= m;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 1; i <= cnt; i++) {
|
||||||
|
cout << st[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user