이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "elephants.h"
#include <bits/stdc++.h>
using namespace std;
int n;
int l;
vector <int> x;
vector <int> sorted;
int current_first;
int camera_count = 1;
void init(int N, int L, int X[])
{
n = N;
l = L;
x.resize(n+1);
for(int i = 0; i < n; i++){
x[i] = X[i];
}
sorted.resize(n);
}
int update(int i, int y)
{
camera_count = 1;
x[i] = y;
for(int i = 0; i<n; i++){
sorted[i] = x[i];
}
sort(sorted.begin(), sorted.end());
current_first = sorted[0];
for(int i = 1; i<n; i++){
if(x[i] - current_first > l){
camera_count ++;
current_first = sorted[i];
}
}
return camera_count;
}
# | 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... |