이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
ll mn, mx, niz[100010];
/*int T, N;
ll call_count, subtask_num, A[100000];
static void my_assert(int k){ if (!k) exit(1); }
void MinMax(long long s, long long t, long long *mn, long long *mx)
{
int lo = 1, hi = N, left = N+1, right = 0;
my_assert(s <= t && mn != NULL && mx != NULL);
while (lo <= hi){
int mid = (lo+hi)>>1;
if (A[mid] >= s) hi = mid - 1, left = mid;
else lo = mid + 1;
}
lo = 1, hi = N;
while (lo <= hi){
int mid = (lo+hi)>>1;
if (A[mid] <= t) lo = mid + 1, right = mid;
else hi = mid - 1;
}
if (left > right) *mn = *mx = -1;
else{
*mn = A[left];
*mx = A[right];
}
if (subtask_num == 1) call_count++;
else if (subtask_num == 2) call_count += right-left+2;
}*/
ll findGap(int T, int N)
{
if(T==1)
{
int begg=0, endd=N-1;
ll low_bound=0, up_bound=LONG_LONG_MAX;
while(begg<=endd)
{
MinMax(low_bound, up_bound, &mn, &mx);
niz[begg]=mn; niz[endd]=mx;
//cout<<mn<<" "<<mx<<endl;
begg++; endd--;
low_bound=mn+1; up_bound=mx-1;
}
ll razlika=0;
for(int i=0; i<N; i++)
{razlika=max(razlika, niz[i+1]-niz[i]);}
return razlika;
}
}
/*int main()
{
cin>>T>>N;
for(int i=1; i<=N; i++)cin>>A[i];
cout<<findGap(T, N);
}
/*1 2
1 3
4!!!!*/
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp:65:1: warning: "/*" within comment [-Wcomment]
65 | /*1 2
|
gap.cpp: In function 'll findGap(int, int)':
gap.cpp:57:1: warning: control reaches end of non-void function [-Wreturn-type]
57 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |