제출 #109802

#제출 시각아이디문제언어결과실행 시간메모리
109802boatinw99Gap (APIO16_gap)C++11
30 / 100
78 ms3488 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-1); for(ll i=1;i<=N;i++) { MinMax(l,r,&mn,&mx); push(mn),push(mx); l+=len; r+=len; } } } 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...