#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
#define foreach(it, x) for(type(x) it = x.begin(); it != x.end(); it++)
#define type(x) __typeof(x.begin())
#define mp make_pair
#define pb push_back
#define nd second
#define st first
#define next sadas
const int inf = 1e9 + 5;
const int N = 2e5 + 5;
int SQ;
typedef pair< int , int > pii;
typedef long long ll;
int n, m, x, y, z, t, S, xx[N], wh[N];
pii next[N];
vector< pii > v[N];
set< pii > SS;
pii take(int ind, int w) {
int t = 0, ss = v[w][ind].st;
while(w <= S && (!v[w].size() || (v[w].rbegin()->st) <= ss + m)) w++;
if(w > S) return mp(inf + 5, inf + 5);
return mp(lower_bound(v[w].begin(), v[w].end(), mp(ss + m + 1, 0)) - v[w].begin(), w);
}
int take() {
pii cur = mp(0, 1);
int ans = 0;
while(!v[cur.nd].size()) cur.nd++;
while(cur.nd < inf) {
int u = v[cur.nd][cur.st].nd;
if(next[u].st) { ans += next[u].st; cur.st = next[u].nd; }
else { cur = take(cur.st, cur.nd); ans++; }
}
return ans;
}
void init(vector< pii > &v) {
for(int i = (int) v.size() - 1; i >= 0; i--) {
int zz = v[i].nd, ind = upper_bound(v.begin(), v.end(), mp(v[i].st + m, inf)) - v.begin();
if(ind == v.size()) next[zz] = mp(0, i);
else {
ind = v[ind].nd;
next[zz] = mp(next[ind].st + 1, next[ind].nd);
}
}
}
void init() {
for(int i = 1; i <= S; i++) v[i].clear();
int s = 0; S = 0;
set< pii > :: iterator it2 = SS.end(); it2--;
vector< pii > temp;
foreach(it, SS) {
temp.pb(*it);
if(++s % SQ == 0 || (it == it2)) {
v[++S] = temp;
foreach(it, temp) wh[it->nd] = S;
init(v[S]);
temp.clear();
}
}
}
void del(int x, int y) {
int ww = wh[y];
v[ww].erase(find(v[ww].begin(), v[ww].end(), mp(x, y)));
init(v[ww]);
SS.erase(SS.find(mp(x, y)));
}
void add(int x, int y) {
int ww = S;
if(SS.lower_bound(mp(x, 0)) != SS.end())
ww = wh[SS.lower_bound(mp(x, 0))->nd];
SS.insert(mp(x, y));
wh[y] = ww;
v[ww].pb(mp(x, y));
sort(v[ww].begin(), v[ww].end());
init(v[ww]);
}
void init(int N, int L, int X[]) {
n = N;
m = L;
SQ = 400;//sqrt(N)+1;
for(int i = 0; i < n; i++) {
xx[i+1] = X[i];
SS.insert(mp(X[i], i+1));
}
init();
}
int update(int i, int y) {
i++;
del(xx[i], i);
add(xx[i] = y, i);
if(++S % 150 == 0) init();
return take();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
25168 KB |
Output is correct |
2 |
Correct |
4 ms |
25168 KB |
Output is correct |
3 |
Correct |
0 ms |
25168 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
25168 KB |
Output is correct |
2 |
Correct |
0 ms |
25168 KB |
Output is correct |
3 |
Correct |
0 ms |
25168 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3413 ms |
25828 KB |
Output is correct |
2 |
Correct |
3645 ms |
26220 KB |
Output is correct |
3 |
Correct |
8740 ms |
28072 KB |
Output is correct |
4 |
Correct |
6964 ms |
27808 KB |
Output is correct |
5 |
Correct |
5537 ms |
27808 KB |
Output is correct |
6 |
Execution timed out |
9000 ms |
28328 KB |
Program timed out |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3925 ms |
26224 KB |
Output is correct |
2 |
Correct |
5512 ms |
26612 KB |
Output is correct |
3 |
Execution timed out |
9000 ms |
28332 KB |
Program timed out |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
9000 ms |
33744 KB |
Program timed out |
2 |
Halted |
0 ms |
0 KB |
- |