# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
248618 | davi_bart | 코끼리 (Dancing Elephants) (IOI11_elephants) | C++14 | 9075 ms | 2680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include "elephants.h"
using namespace std;
typedef long long ll;
//#define int ll
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int n;
vector<int> v(200010);
vector<int> p(200010);
int dim;
void init(int N, int L, int X[]){
n=N;
v.resize(N);
p.resize(N);
for(int i=0;i<N;i++){
p[i]=v[i]=X[i];
}
dim=L;
}
int update(int i,int y){
p.erase(lower_bound(p.begin(),p.end(),v[i]));
p.insert(upper_bound(p.begin(),p.end(),y),y);
v[i]=y;
int pos=p[0];
int tot=1;
if(dim>100){
while(1){
int w=upper_bound(p.begin(),p.end(),pos+dim)-p.begin();
if(w==p.size())break;
tot++;
pos=p[w];
}
}else{
for(int x:p){
if(x-pos<=dim)continue;
tot++;
pos=x;
}
}
return tot;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |