CSES - APIO 2016 - Results
Submission details
Task:Gap
Sender:Lieska
Submission time:2019-04-13 12:00:33 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

output/ccokgzCx.o: In function `main':
code.cpp:(.text.startup+0xbd): undefined reference to `findGap(int, int)'
collect2: error: ld returned 1 exit status

Code

#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
ll FindGap(ll a, ll b){
    ll c=0, d=1e18, t[100001], s=0, mn, mx;
    if (a==1){
        for (int i=1; i<=(b+1)/2; ++i){
            MinMax(c, d, &mn, &mx);
            t[i]=mn;
            t[b+1-i]=mx;
            c=mn-1;
            d=mx-1;
        }
        for (int i=1; i<b; ++i){
            c=t[i+1]-t[i];
            if (c>s) s=c;
        }
    }
    return s;
}