This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include"bits/stdc++.h"
using namespace std;
#define LL long long
#define REP(i, n) for(int (i)=0; (i)<(n); (i)++)
#define PB push_back
#define MP make_pair
#define MOD 1000000007
#include"gap.h"
//MinMax(LL s, LL t, LL& mn, LL& mx)
//aiのうちs以上の最小の数がmnに、aiのうちt以下の最大値がmxに格納される
//aiの差分のうち最大のものを返す
LL findGap(int T, int N){
if(T == 1){
LL m = 0LL;
LL M = 1000000000000000000LL;
vector<LL> v;
for(int i=0; i<(N+1)/2; i++){
LL tmp1, tmp2;
MinMax(m, M, &tmp1, &tmp2);
v.PB(tmp1);
v.PB(tmp2);
m = tmp1+1;
M = tmp2-1;
}
sort(v.begin(), v.end());
LL ans = 0;
for(int i=1; i<v.size(); i++){
ans = max(ans, v[i] - v[i-1]);
}
return ans;
}
if(T == 2){
#define B 1000000000000000LL
queue<pair<LL, LL>> kukan;
for(LL i=0; i<=1000000000000000000LL; i+=B){
kukan.push(MP(i,i+B-1));
}
vector<LL> v;
while(kukan.size() > 0){
LL m = kukan.front().first;
LL M = kukan.front().second;
kukan.pop();
LL tmp1, tmp2;
MinMax(m, M, &tmp1, &tmp2);
if(tmp1 == -1) continue;
v.PB(tmp1);
if(tmp1 == tmp2) continue;
v.PB(tmp2);
LL mid = (tmp1+tmp2) / 2;
kukan.push(MP(tmp1+1, mid));
kukan.push(MP(mid+1, tmp2-1));
}
sort(v.begin(), v.end());
LL ans = 0;
for(int i=1; i<v.size(); i++){
ans = max(ans, v[i] - v[i-1]);
}
return ans;
}
}
Compilation message (stderr)
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:31:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=1; i<v.size(); i++){
~^~~~~~~~~
gap.cpp:60:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=1; i<v.size(); i++){
~^~~~~~~~~
gap.cpp:65:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |