Submission #47269

# Submission time Handle Problem Language Result Execution time Memory
47269 2018-04-30T05:33:47 Z Talant Fireworks (APIO16_fireworks) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>

#include "gap.h"
//#include "grader.cpp"

#define int long long

using namespace std;

const int M = (1e6 + 5);

int ans = 0;
int a[M];
int l,r = 1e18;
int ll,rr;

long long findGap(int T, int N)
{
      return 0;
      if (T == 1) {
            int o = (N + 1) / 2;
            ll = 1,rr = N;
            while (o --) {
                  MinMax(l,r,&a[ll],&a[rr]);
                  l = a[ll] + 1,r = a[rr] + 1;
                  ll ++,rr --;
            }
            for (int i = 1; i < N; i ++)
                  ans = max(ans,a[i + 1] - a[i]);
            return ans;
      }
      else {
            return 0;
      }
}

Compilation message

fireworks.cpp:3:10: fatal error: gap.h: No such file or directory
 #include "gap.h"
          ^~~~~~~
compilation terminated.