0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

3781. 小B的询问

https://hydro.ac/d/bzoj/record/63230865bdf9bc31d160bed5
This commit is contained in:
Baoshuo Ren 2022-09-15 19:11:55 +08:00
parent fefe23f287
commit 546fa22701
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 132 additions and 0 deletions

72
BZOJ/3781/3781.cpp Normal file
View File

@ -0,0 +1,72 @@
#include <iostream>
#include <algorithm>
#include <cmath>
#include <tuple>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 5e4 + 5;
int n, m, k, a[N], c[N], t, ans[N];
std::vector<std::tuple<int, int, int>> q;
inline void add(int x, int &res) {
res += 2 * c[x] + 1;
c[x]++;
}
inline void del(int x, int &res) {
res -= 2 * c[x] - 1;
c[x]--;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m >> k;
for (int i = 1; i <= n; i++) {
cin >> a[i];
}
t = sqrt(n);
for (int i = 1, l, r; i <= m; i++) {
cin >> l >> r;
q.push_back(std::make_tuple(i, l, r));
}
std::sort(q.begin(), q.end(), [&](auto a, auto b) {
int p = std::get<1>(a) / t,
q = std::get<1>(b) / t;
return p == q
? (p & 1)
? std::get<2>(a) < std::get<2>(b)
: std::get<2>(a) > std::get<2>(b)
: p < q;
});
int i = 0, j = 1, res = 0, id, l, r;
for (auto &e : q) {
std::tie(id, l, r) = e;
while (i < r) add(a[++i], res);
while (i > r) del(a[i--], res);
while (j < l) del(a[j++], res);
while (j > l) add(a[--j], res);
ans[id] = res;
}
for (int i = 1; i <= m; i++) {
cout << ans[i] << endl;
}
return 0;
}

BIN
BZOJ/3781/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/3781/data/9.out (Stored with Git LFS) Normal file

Binary file not shown.