using namespace std;
#include "elephants.h"
#include <bits/stdc++.h>
#define f first
#define s second
#define all(x) begin(x), end(x)
const int MAXN = 150000;
int N;
int BLOCKSIZE;
int L;
const int K = 4;
int REDO = K;
vector<vector<int>> blocks;
vector<vector<pair<int, int>>> storeBack;
vector<int> permVec;
int X[MAXN];
int blockId[MAXN];
void recalcBlock(int i) {
auto comp = [&] (const int& lhs, const int& rhs) {
return X[lhs] < X[rhs];
};
sort(all(blocks[i]), comp);
storeBack[i].resize(blocks[i].size());
int l = blocks[i].size()-1;
int r = blocks[i].size()-1;
while (l >= 0) {
while (X[blocks[i][l]] + L < X[blocks[i][r]]) {
r--;
}
if (r == blocks[i].size()-1) {
storeBack[i][l] = {1, X[blocks[i][l]] + L};
}
else {
storeBack[i][l] = storeBack[i][r+1];
storeBack[i][l].f++;
}
l--;
}
}
void rebuild() {
for (auto& vec : blocks) {
vec.clear();
}
auto comp = [&] (const int& lhs, const int& rhs) {
return X[lhs] < X[rhs];
};
sort(all(permVec), comp);
for (int i = 0; i < N; i++) {
blocks[i/K].push_back(permVec[i]);
blockId[permVec[i]] = i/K;
}
for (int i = 0; i < BLOCKSIZE; i++) {
recalcBlock(i);
}
}
int getAns() {
int next = -1;
int res = 0;
for (int i = 0; i < BLOCKSIZE; i++) {
if (blocks[i].size() > 0 && next < X[blocks[i].back()]) {
int low = 0;
int high = blocks[i].size()-1;
while (low < high) {
int mid = (low + high)/2;
if (next < X[blocks[i][mid]]) {
high = mid;
}
else {
low = mid+1;
}
}
res += storeBack[i][high].f;
next = storeBack[i][high].s;
}
}
return res;
}
void init(int n, int l, int LD[])
{
N = n;
L = l;
for (int i = 0; i < N; i++) {
permVec.push_back(i);
X[i] = LD[i];
}
BLOCKSIZE = (N-1)/K + 1;
blocks.resize(BLOCKSIZE, {});
storeBack.resize(BLOCKSIZE, {});
rebuild();
}
int update(int i, int y)
{
if (REDO == 0) {
rebuild();
REDO = K;
}
X[i] = y;
blocks[blockId[i]].erase(find(all(blocks[blockId[i]]), i));
recalcBlock(blockId[i]);
for (int j = 0; j < BLOCKSIZE; j++) {
if ((j == BLOCKSIZE - 1) || (blocks[j].size() > 0 && blocks[j].back() >= y)) {
blocks[j].push_back(i);
blockId[i] = j;
recalcBlock(j);
break;
}
}
REDO--;
return getAns();
}
Compilation message
elephants.cpp: In function 'void recalcBlock(int)':
elephants.cpp:34:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if (r == blocks[i].size()-1) {
| ~~^~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |