Submission #872954

#TimeUsernameProblemLanguageResultExecution timeMemory
872954StefanL2005Gap (APIO16_gap)C++14
0 / 100
18 ms3792 KiB
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
#define ll long long

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

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

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


    ll maxDif = 0;

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

    return maxDif;
}


Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:16:15: warning: 'c1' may be used uninitialized in this function [-Wmaybe-uninitialized]
   16 |         MinMax(a + 1, b - 1, c1, c2);
      |         ~~~~~~^~~~~~~~~~~~~~~~~~~~~~
gap.cpp:16:15: warning: 'c2' may be used uninitialized in this function [-Wmaybe-uninitialized]
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...