Submission #870793

# Submission time Handle Problem Language Result Execution time Memory
870793 2023-11-09T06:26:05 Z StefanL2005 Gap (APIO16_gap) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll findGap(int T, int N)
{
    vector<int> v(n);

    int p1 = 0, p2 = n - 1;
    ll a = 0, b = pow(10, 18) + 1;

    while (p1 <= p2)
    {
        MinMax(a + 1, b - 1, a, b)
        v[p1] = a;
        v[p2] = b;
        p1++;
        p2--;
    }


    int maxDif = 0;

    for (int i = 1; i < n; i++)
        maxDif = max(maxDif, v[i] - v[i - 1]);

    return maxDif;
}

Compilation message

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:7:19: error: 'n' was not declared in this scope
    7 |     vector<int> v(n);
      |                   ^
gap.cpp:14:9: error: 'MinMax' was not declared in this scope
   14 |         MinMax(a + 1, b - 1, a, b)
      |         ^~~~~~