이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include<bits/stdc++.h>
using namespace std;
#define INIT ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#define mp make_pair
#define pb push_back
#define ft first
#define sc second
#define ll long long
#define pii pair<int, int>
#define count_bits __builtin_popcount
#define int ll
int n;
int l1, r1;
int subtask_1(){
int l=-2, r=(1e18); r+=1;
int mx=1;
int cnt=0;
while(cnt<n){
MinMax(l+1, r-1, &l1, &r1);
if( (cnt>0) ){
mx=max(max((ll)l1-l, (ll)r-r1), mx );
}
cnt+=2;
l=l1, r=r1;
//cout<<l<<" "<<r<<"\n"<<flush;
}
mx=max(mx, r-l);
return mx;
}
int subtask_2(){
int ft, lt;
MinMax(0, 10e18, &ft, <);
int d=(lt-ft)/n;
int res=0;
int l=-1, r=ft;
int l1=-1, r1=-1;
for(int i=ft+1; i<lt; i+=d){
MinMax(i, min(i+d-1, lt-1), &l1, &r1);
if(r>=0){res=max(res, l1-r );}
l=max(l1, l); r=max(r1, r);
}
res=max(res, lt-r);
return res;
}
long long findGap(int32_t T, int32_t N)
{
n=N;
if(T==1){
return subtask_1();
}
else{
return subtask_2();
}
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int subtask_2()':
gap.cpp:45:11: warning: overflow in conversion from 'double' to 'long long int' changes value from '1.0e+19' to '9223372036854775807' [-Woverflow]
45 | MinMax(0, 10e18, &ft, <);
| ^~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |