Submission #750900

#TimeUsernameProblemLanguageResultExecution timeMemory
750900M_WGap (APIO16_gap)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
// #include "grader.cpp"
#include "gap.h"
using namespace std;

long long findGap(int T, int N){
  set<long long> s;
  long long L, R;
  if(T == 1){
    MinMax(1, 1e18, &L, &R);
    s.insert(L); s.insert(R);
    for(int i = 1; i < (N + 1) >> 1; i++){
      long long qs, qt;
      MinMax(L + 1, R - 1, &qs, &qt);
      s.insert(qs); s.insert(qt);
      L = qs; R = qt;
    }
  }
  else{
    MinMax(1, 1e18, &L, &R);

    long long X = (R - L) / ((N * 1ll) - 1);
    X += (R - L) % ((N * 1ll) - 1) != 0;

    long long qs, qt;
    for(long long i = L + 1; i < R; i += X){
      MinMax(i, i + X - 1), &qs, &qt);
      s.insert(qs); s.insert(qt);
    }
    s.erase(-1ll);
  }

  long long ans = 0, old = L;
  for(auto x : s){
    ans = max(ans, x - old);
    old = x;
  }
  return ans;
}

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:27:26: error: too few arguments to function 'void MinMax(long long int, long long int, long long int*, long long int*)'
   27 |       MinMax(i, i + X - 1), &qs, &qt);
      |                          ^
In file included from gap.cpp:3:
gap.h:1:6: note: declared here
    1 | void MinMax(long long, long long, long long*, long long*);
      |      ^~~~~~