#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
const int mxN = 150007;
const int SZ = 388;
int n, l, step, pos[mxN], bkt[mxN], to[mxN], cnt[mxN];
set<pair<int,int>> st;
vector<pair<int,int>> arr[SZ];
void fix(int b) {
for (int i = arr[b].size()-1; i >= 0; --i) {
int val = arr[b][i].first + l;
auto it = upper_bound(arr[b].begin(), arr[b].end(), make_pair(val,INT_MAX));
if (it == arr[b].end()) {
to[arr[b][i].second] = val;
cnt[arr[b][i].second] = 1;
}
else {
to[arr[b][i].second] = to[(*it).second];
cnt[arr[b][i].second] = cnt[(*it).second] + 1;
}
}
}
void construct() {
assert(st.size() == n);
auto it = st.begin();
for (int i = 0; i < n; ++i) {
bkt[(*it).second] = i/SZ;
arr[i/SZ].push_back(*it);
advance(it, 1);
}
for (int b = 0; b < SZ; ++b) {
fix(b);
}
}
void init(int N, int L, int X[]) {
n = N, l = L;
for (int i = 0; i < n; ++i) {
pos[i] = X[i];
st.insert({pos[i], i});
}
construct();
}
int update(int i, int y) {
for (int j = 0; j < arr[bkt[i]].size(); ++j) {
if (arr[bkt[i]][j].second == i) {
arr[bkt[i]].erase(arr[bkt[i]].begin() + j);
break;
}
}
st.erase({pos[i], i});
fix(bkt[i]);
for (int b = 0; b < SZ; ++b) {
if (b == SZ-1 || (arr[b].size() && arr[b].back().first > y)) {
bkt[i] = b;
arr[b].push_back({pos[i] = y, i});
sort(arr[b].begin(), arr[b].end());
st.insert({pos[i], i});
fix(b);
break;
}
}
int ans = 0, cur = -1;
for (int b = 0; b < SZ; ++b) {
if (arr[b].size() && arr[b].back().first > cur) {
auto it = upper_bound(arr[b].begin(), arr[b].end(),
make_pair(cur,INT_MAX));
ans += cnt[(*it).second];
cur = to[(*it).second];
}
}
step++;
if (false && step == SZ) {
construct();
step = 0;
}
return ans;
}
Compilation message
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from elephants.cpp:2:
elephants.cpp: In function 'void construct()':
elephants.cpp:29:22: warning: comparison of integer expressions of different signedness: 'std::set<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
29 | assert(st.size() == n);
| ~~~~~~~~~~^~~~
elephants.cpp: In function 'int update(int, int)':
elephants.cpp:56:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | for (int j = 0; j < arr[bkt[i]].size(); ++j) {
| ~~^~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
10588 KB |
Output is correct |
2 |
Correct |
2 ms |
10588 KB |
Output is correct |
3 |
Correct |
2 ms |
10584 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
10588 KB |
Output is correct |
2 |
Correct |
2 ms |
10588 KB |
Output is correct |
3 |
Correct |
2 ms |
10584 KB |
Output is correct |
4 |
Correct |
2 ms |
10588 KB |
Output is correct |
5 |
Correct |
2 ms |
10588 KB |
Output is correct |
6 |
Correct |
1 ms |
10708 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
10588 KB |
Output is correct |
2 |
Correct |
2 ms |
10588 KB |
Output is correct |
3 |
Correct |
2 ms |
10584 KB |
Output is correct |
4 |
Correct |
2 ms |
10588 KB |
Output is correct |
5 |
Correct |
2 ms |
10588 KB |
Output is correct |
6 |
Correct |
1 ms |
10708 KB |
Output is correct |
7 |
Execution timed out |
9031 ms |
13832 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
10588 KB |
Output is correct |
2 |
Correct |
2 ms |
10588 KB |
Output is correct |
3 |
Correct |
2 ms |
10584 KB |
Output is correct |
4 |
Correct |
2 ms |
10588 KB |
Output is correct |
5 |
Correct |
2 ms |
10588 KB |
Output is correct |
6 |
Correct |
1 ms |
10708 KB |
Output is correct |
7 |
Execution timed out |
9031 ms |
13832 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
10588 KB |
Output is correct |
2 |
Correct |
2 ms |
10588 KB |
Output is correct |
3 |
Correct |
2 ms |
10584 KB |
Output is correct |
4 |
Correct |
2 ms |
10588 KB |
Output is correct |
5 |
Correct |
2 ms |
10588 KB |
Output is correct |
6 |
Correct |
1 ms |
10708 KB |
Output is correct |
7 |
Execution timed out |
9031 ms |
13832 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |