이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e5 + 5;
int n, len;
set<int> pos;
int cur_pos[MAXN];
void init(int N, int L, int X[]) {
n = N;
len = L;
for(int i = 0; i < N; i++) {
pos.insert(X[i]);
cur_pos[i] = X[i];
}
}
int update(int i, int y)
{
pos.erase(cur_pos[i]);
cur_pos[i] = y;
pos.insert(cur_pos[i]);
int ans = 0, x = *(pos.begin());
while(true) {
ans++;
if(pos.lower_bound(x + len + 1) == pos.end()) {
break;
}
x = *(pos.lower_bound(x + len));
}
return ans;
}
# | 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... |