# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
111574 | aleksam | Gap (APIO16_gap) | C++14 | 63 ms | 1936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <bits/stdc++.h>
#define LLMAX 1000000000000000000LL
long long findGap1(int N){
long long mn, mx;
long long a[N];
MinMax(1, LLMAX, &mn, &mx);
a[0]=mn;
a[N-1]=mx;
for(int i=1; i<=N-1-i; ++i){
MinMax(a[i-1]+1, a[N-i]-1, &mn, &mx);
a[i]=mn;
a[N-i-1]=mx;
}
long long maxdiff=1;
for(int i=0; i<N-1; ++i){
if(a[i+1]-a[i]>maxdiff)
maxdiff=a[i+1]-a[i];
}
return maxdiff;
}
long long findGap2(int N)
{
if(N<=50)return findGap1(N);
long long apsmin, apsmax;
long long g=1, gg=1;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |