# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
165716 | itiam | Hindeks (COCI17_hindeks) | C++11 | 305 ms | 2312 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <cstdio>
using namespace std;
int L[500005];
int main(){
int N,x,zb=0,me=0,br=0;
cin >> N;
for (int i=0;i<N;i++){
cin >> x;
if (x<=500000) L[x]+=1;
else L[500000+1]+=1;
if (x>me) me=x;
}
if (me>=500000){
me=500001;
}
/*cout << "L: ";
for (int i=0;i<=me;i++) cout << L[i] << " ";
cout << "\n";
*/
for (int i=me;i>=0;i--){
for (int j=i;j<=me-br;j++){
zb+=L[j];
}
//cout << "zb: " << zb << "\n";
br+=1;
if (zb>=i){
zb=i;
break;
}
}
cout << zb;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |