제출 #741991

#제출 시각아이디문제언어결과실행 시간메모리
741991vjudge1Gap (APIO16_gap)C++17
0 / 100
44 ms1892 KiB
#include "gap.h" #include<bits/stdc++.h> using namespace std; long long findGap(int T, int N){ long long l = 0, r = 1e18, L = 1, R = N; long long a[N+1], mn, mx; while(l <= r){ MinMax(l, r, &mn, &mx); if(mn == -1 && mx == -1) break; a[L] = mn, a[R] = mx; L++, R--; l = mn+1; r = mx-1; } long long ans = 0; for(int i=2; i<=N; i++){ ans = max(ans, a[i] - a[i-1]); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...