답안 #29118

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
29118 2017-07-18T10:07:38 Z dereotu 코끼리 (Dancing Elephants) (IOI11_elephants) C++14
0 / 100
109 ms 17644 KB
#include "elephants.h"
#include <bits/stdc++.h>
#define pii pair<int,int>
#define mp make_pair
#define pb push_back
#define st first
#define nd second
#define forr(i,A,B) for(int i=A;i<B;++i)
#define space ' '
#define endl '\n'
#define LL long long
using namespace std;
int n,l,a[2];

void init(int N, int L, int X[]){
	l=L;
	n = N;
	forr(i,0,n){
		a[i]=X[i];
	}
}

int update(int i, int y){
	a[i]=y;
	int ans=1;
	sort(a,a+n);
	int lp=0,rp=0;
	while(rp<n){
		if(a[rp]-a[lp]<=l){
			rp++;
		}
		else{
			ans++;
			lp=++rp;
		}
	}
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 17644 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 17644 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 17644 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 46 ms 17644 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 109 ms 17644 KB Output isn't correct
2 Halted 0 ms 0 KB -