0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

P4135 作诗

https://www.luogu.com.cn/record/84184013
This commit is contained in:
Baoshuo Ren 2022-08-17 19:41:41 +08:00
parent b363548d85
commit b2241462af
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
3 changed files with 117 additions and 0 deletions

111
Luogu/P4135/P4135.cpp Normal file
View File

@ -0,0 +1,111 @@
#include <iostream>
#include <cmath>
#include <cstring>
using std::cin;
using std::cout;
const char endl = '\n';
constexpr int N = 1e5 + 5,
M = 1005;
int n, c, m, a[N], cnt[M][N], ans[M][N], res;
int t, b, st[N], ed[N], pos[N], h[N];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> c >> m;
t = std::sqrt(n);
for (int i = 1; i <= n; i++) {
cin >> a[i];
}
for (b = 1;; b++) {
st[b] = (b - 1) * t + 1;
ed[b] = std::min(n, b * t);
if (b * t >= n) break;
}
for (int i = 1; i <= b; i++) {
for (int j = st[i]; j <= ed[i]; j++) {
pos[j] = i;
cnt[i][a[j]]++;
}
}
for (int i = 1; i <= b; i++) {
for (int j = 0; j <= c; j++) {
cnt[i][j] += cnt[i - 1][j];
}
}
for (int i = 1; i <= b; i++) {
for (int j = i; j <= b; j++) {
ans[i][j] = ans[i][j - 1];
for (int k = st[j]; k <= ed[j]; k++) {
h[a[k]]++;
if (h[a[k]] % 2 == 0) ans[i][j]++;
else if (h[a[k]] >= 3) ans[i][j]--;
}
}
memset(h, 0x00, sizeof(h));
}
while (m--) {
int l, r;
cin >> l >> r;
l = (l + res) % n + 1;
r = (r + res) % n + 1;
if (l > r) std::swap(l, r);
if (pos[l] == pos[r]) {
res = 0;
for (int i = l; i <= r; i++) {
h[a[i]]++;
if (h[a[i]] % 2 == 0) res++;
else if (h[a[i]] >= 3) res--;
}
for (int i = l; i <= r; i++) h[a[i]]--;
} else {
res = ans[pos[l] + 1][pos[r] - 1];
for (int i = l; i <= ed[pos[l]]; i++) {
h[a[i]]++;
int x = cnt[pos[r] - 1][a[i]] - cnt[pos[l]][a[i]];
if ((h[a[i]] + x) % 2 == 0) res++;
else if (h[a[i]] + x >= 3) res--;
}
for (int i = st[pos[r]]; i <= r; i++) {
h[a[i]]++;
int x = cnt[pos[r] - 1][a[i]] - cnt[pos[l]][a[i]];
if ((h[a[i]] + x) % 2 == 0) res++;
else if (h[a[i]] + x >= 3) res--;
}
for (int i = l; i <= ed[pos[l]]; i++) h[a[i]]--;
for (int i = st[pos[r]]; i <= r; i++) h[a[i]]--;
}
cout << res << endl;
}
return 0;
}

BIN
Luogu/P4135/data/P4135_2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4135/data/P4135_2.out (Stored with Git LFS) Normal file

Binary file not shown.