Submission #503954

#TimeUsernameProblemLanguageResultExecution timeMemory
503954Carmel_Ab1Gap (APIO16_gap)C++17
43.38 / 100
68 ms3268 KiB
#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; vl a; if(T==1){ int i=0; while(2*i<n){ MinMax(L,R,&L,&R); a.pb(L); a.pb(R); L++,R--; i++; } 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; } MinMax(0,1e18,&L,&R); ll block=ceil(R-L+1,n); 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; }

Compilation message (stderr)

gap.cpp: In function 'll findGap(int, int)':
gap.cpp:29:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |         for(int i=0; i+1<a.size(); i++)
      |                      ~~~^~~~~~~~~
gap.cpp:56:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   56 |     for(int i=0; i+1<a.size(); i++)
      |                  ~~~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...