This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
int main() {
ios_base::sync_with_stdio(false);
cout.tie(nullptr);
cin.tie(nullptr);
int n, q;
cin >> n >> q;
vector<int> arr(n);
for (auto &ref: arr) cin >> ref;
while (q--) {
int left, right;
cin >> left >> right;
left--;
std::sort(arr.begin(), arr.end());
vector<int> lens;
{
vector<int> raw_lens;
int last = -1;
for (int i = 0; i < n; i++) {
if (last == -1) {
last = i;
continue;
}
if (arr[i] == arr[last]) {}
else {
raw_lens.push_back(i - last);
last = i;
}
}
raw_lens.push_back(n - last);
std::sort(raw_lens.begin(), raw_lens.end());
vector<int> first, second;
int i = 0;
while (true) {
if (i < raw_lens.size()) {
first.push_back(raw_lens[i]);
i++;
} else break;
if (i < raw_lens.size()) {
second.push_back(raw_lens[i]);
i++;
} else break;
}
for (int l: first)
lens.push_back(l);
for (auto it = second.rbegin(); it != second.rend(); it++)
lens.push_back(*it);
}
struct ptr {
int in;
int cnt;
};
auto advance = [&](ptr &ptr) {
if (ptr.cnt + 1 == lens[ptr.in]) {
ptr.cnt = 0;
ptr.in++;
} else ptr.cnt++;
};
int total = 0;
for (int sublen = 1; sublen <= n; sublen++) {
ptr first{0, 0};
ptr second{0, 0};
for (int _ = 0; _ < sublen - 1; _++) advance(second);
while (second.in < lens.size()) {
total += second.in - first.in + 1;
advance(first);
advance(second);
}
}
cout << total << "\n";
}
}
Compilation message (stderr)
diversity.cpp: In function 'int main()':
diversity.cpp:52:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | if (i < raw_lens.size()) {
| ~~^~~~~~~~~~~~~~~~~
diversity.cpp:57:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | if (i < raw_lens.size()) {
| ~~^~~~~~~~~~~~~~~~~
diversity.cpp:87:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
87 | while (second.in < lens.size()) {
| ~~~~~~~~~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |