#include <bits/stdc++.h>
using namespace std;
using vi = vector<int>;
using ll = long long;
using pi = pair<int,int>;
#define ST first
#define ND second
#define PB push_back
struct Node {
int g;
pi f;
};
const int nax = 200000 + 10, INF = 1e9 + 10;
int n, k;
int val[nax];
int num[nax];
Node T[(1<<19)];
void prop(int x) {
T[2*x].g += T[x].g;
T[2*x+1].g += T[x].g;
T[x].g = 0;
}
void upd(int a, int b, int l, int r, int v, int x) {
if(a > b) return;
if(a <= l && r <= b) {
T[v].g += x;
return;
}
prop(v);
int mid = (l + r)/2;
if(a <= mid) upd(a,b,l,mid,v*2,x);
if(mid < b) upd(a,b,mid+1,r,v*2+1,x);
T[v].f = min(make_pair(T[2*v].f.ST + T[2*v].g, T[2*v].f.ND), make_pair(T[2*v+1].f.ST + T[2*v+1].g, T[2*v+1].f.ND));
}
void ini(int l, int r, int v) {
T[v].f.ND = l;
if(l == r) {
return;
}
int mid = (l + r)/2;
ini(l,mid,v*2);
ini(mid+1,r,v*2+1);
}
pi qr() {
return {T[1].f.ST + T[1].g, T[1].f.ND};
}
set<int>zero;
set<int>candidate;
int d(int a, int b) {
if(b >= a) return b - a;
else return b - a + n;
}
void dodaj(int x) {
if((int)zero.size() == 0) {
zero.insert(x);
candidate.insert(x);
return;
}
auto it = zero.lower_bound(x);
auto it2 = it;
if(it2 == zero.begin()) {
it2 = zero.end();
}
it2--;
if(it == zero.end()) it = zero.begin();
int pr = (*it2);
int nx = (*it);
if(d(x, nx) < k) {
candidate.erase(nx);
}
if(d(pr, x) >= k) {
candidate.insert(x);
}
zero.insert(x);
}
void usun(int x) {
candidate.erase(x);
auto it = zero.lower_bound(x);
auto it2 = it;
if(it2 == zero.begin()) {
it2 = zero.end();
}
it2--;
it++;
if(it == zero.end()) it = zero.begin();
if(d((*it2), (*it)) >= k) {
candidate.insert((*it));
}
zero.erase(x);
}
void init(int K, vi r) {
k = K;
n = (int)r.size();
ini(0, n-1,1);
for(int i = 0; i < n; ++i) {
upd(i,i,0,n-1,1,r[i]);
}
pi w = qr();
while(w.ST == 0) {
//dodaj(w.ND);
zero.insert(w.ND);
upd(w.ND,w.ND,0,n-1,1,INF);
w = qr();
}
int cur = n;
for(int step = 0; step < n; ++step) {
//auto it = candidate.begin();
//int x = (*it);
int x = -1, last = -1;
for(auto y : zero) {
if(last != -1) {
if(y - last >= k) x = y;
}
last = y;
}
if(x == -1) x = (*zero.begin());
upd(max(0, x - k + 1), x - 1, 0, n - 1, 1, -1);
upd(x - k + 1 + n, n - 1, 0, n - 1, 1, -1);
//usun(x);
zero.erase(x);
w = qr();
while(w.ST == 0) {
//dodaj(w.ND);
zero.insert(w.ND);
upd(w.ND,w.ND,0,n-1,1,INF);
w = qr();
}
num[x] = cur--;
}
}
int compare_plants(int x, int y) {
if(num[x] < num[y]) return -1;
else return 1;
}
//int main() {
// init(3, {0, 1, 1, 2});
// cout << compare_plants(0, 2) << "\n";
// cout << compare_plants(1, 2) << "\n";
//}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6528 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Correct |
4 ms |
6520 KB |
Output is correct |
4 |
Incorrect |
4 ms |
6508 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6508 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Correct |
4 ms |
6508 KB |
Output is correct |
4 |
Correct |
4 ms |
6508 KB |
Output is correct |
5 |
Correct |
4 ms |
6508 KB |
Output is correct |
6 |
Correct |
6 ms |
6636 KB |
Output is correct |
7 |
Correct |
74 ms |
11244 KB |
Output is correct |
8 |
Correct |
5 ms |
6636 KB |
Output is correct |
9 |
Correct |
6 ms |
6636 KB |
Output is correct |
10 |
Correct |
75 ms |
11244 KB |
Output is correct |
11 |
Correct |
136 ms |
11372 KB |
Output is correct |
12 |
Correct |
76 ms |
11372 KB |
Output is correct |
13 |
Correct |
75 ms |
11372 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6508 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Correct |
4 ms |
6508 KB |
Output is correct |
4 |
Correct |
4 ms |
6508 KB |
Output is correct |
5 |
Correct |
4 ms |
6508 KB |
Output is correct |
6 |
Correct |
6 ms |
6636 KB |
Output is correct |
7 |
Correct |
74 ms |
11244 KB |
Output is correct |
8 |
Correct |
5 ms |
6636 KB |
Output is correct |
9 |
Correct |
6 ms |
6636 KB |
Output is correct |
10 |
Correct |
75 ms |
11244 KB |
Output is correct |
11 |
Correct |
136 ms |
11372 KB |
Output is correct |
12 |
Correct |
76 ms |
11372 KB |
Output is correct |
13 |
Correct |
75 ms |
11372 KB |
Output is correct |
14 |
Correct |
103 ms |
11756 KB |
Output is correct |
15 |
Correct |
493 ms |
14956 KB |
Output is correct |
16 |
Correct |
104 ms |
11756 KB |
Output is correct |
17 |
Correct |
488 ms |
15084 KB |
Output is correct |
18 |
Execution timed out |
4043 ms |
18548 KB |
Time limit exceeded |
19 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6508 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Correct |
71 ms |
9408 KB |
Output is correct |
4 |
Execution timed out |
4009 ms |
16804 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6508 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Incorrect |
4 ms |
6508 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6508 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Incorrect |
4 ms |
6508 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
6528 KB |
Output is correct |
2 |
Correct |
4 ms |
6508 KB |
Output is correct |
3 |
Correct |
4 ms |
6520 KB |
Output is correct |
4 |
Incorrect |
4 ms |
6508 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |