이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "gap.h"
typedef long long ll;
typedef vector<ll> vl;
#define all(x) x.begin(),x.end()
#define pb push_back
ll ceil(ll a,ll b){return (a+b-1)/b;}
ll findGap(int T, int n){
ll L=0,R=1e18;
MinMax(0,1e18,&L,&R);
ll block=ceil(R-L+1,n);
vl a={L,R};
for(int i=0; i<n; i++){
ll l=L+i*block;
ll r=l+block-1;
while(l<r){
MinMax(l,r,&l,&r);
if(l==-1)break;
a.pb(l);
a.pb(r);
l++,r--;
}
if(l==r && l!=-1)
a.pb(l);
}
ll ans=0;
sort(all(a));
for(int i=0; i+1<a.size(); i++)
ans=max(ans,a[i+1]-a[i]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'll findGap(int, int)':
gap.cpp:39:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for(int i=0; i+1<a.size(); i++)
| ~~~^~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |