Submission #109794

#TimeUsernameProblemLanguageResultExecution timeMemory
109794boatinw99Gap (APIO16_gap)C++11
30 / 100
61 ms2416 KiB
#include "gap.h" #include<bits/stdc++.h> using namespace std ; typedef long long ll ; const ll inf = 1e18 ; vector<ll> v ; void push(ll cst) { if(cst>-1)v.emplace_back(cst); } ll findGap(int T, int N) { ll mn=0,mx=0,l=0,r=inf ; v.clear(); if(T==1) { for(int i=1;i<=(N+1)/2;i++) { MinMax(l,r,&mn,&mx); push(mn),push(mx); l=mn+1,r=mx-1; } } else { MinMax(l,r,&mn,&mx); l=mn,r=mx; push(mn),push(mx); if(N==2) { ll len = (mx-mn)/(N-2); for(ll i=mn+1;i<mx;i+=len) { MinMax(i,i+len,&mn,&mx); push(mn),push(mx); } } } sort(v.begin(),v.end()); ll ret = 0 ; for(int i=1;i<(int)v.size();i++)ret=max(ret,v[i]-v[i-1]); return ret ; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...