# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
200756 | Rakhmand | Gap (APIO16_gap) | C++14 | 204 ms | 5884 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <cstring>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <queue>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cassert>
#include <iterator>
using namespace std;
typedef long long llong;
long long a[100010];
set<llong> st;
void upd(llong l, llong r){
llong mn = NULL, mx = NULL;
MinMax(l, r, &mn, &mx);
if(mn == -1){
return ;
}
st.insert(mn);
if(mn != mx) st.insert(mx);
l = mn + 1, r = mx - 1;
if(l > r) return ;
llong div = (r - l + 14) / 15;
for(llong tl = l; tl <= r; tl = tl + div + 1){
llong tr = min(tl + div, r);
//cout << tl << ' ' << div << ' ' << tr << endl;
if(tl > tr) continue;
upd(tl, tr);
}
}
long long findGap(int T, int N) {
if(T == 1){
int L = 1, R = N;
long long l = 0, r = 1e18;
while(R >= L){
long long mn = NULL, mx = NULL;
//cout << L << ' ' << R << ' ' << l << ' ' << r << endl;
MinMax(l, r, &mn, &mx);
//cout << mn << ' ' << mx << endl;
a[L++] = mn;
a[R--] = mx;
l = mn + 1;
r = mx - 1;
}
long long ans = 0;
for(int i = 1; i < N; i++){
//std::cout << a[i] << ' ';
if(a[i + 1] - a[i] > ans){
ans = a[i + 1] - a[i];
}
}
return ans;
}else{
upd(1, (llong) 1e18);
llong ans = 0;
llong last = -1;
for(auto it : st){
if(last != -1){
if(it - last > ans){
ans = it - last;
}
}
last = it;
}
return ans;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |