Submission #668268

#TimeUsernameProblemLanguageResultExecution timeMemory
668268finn__Gap (APIO16_gap)C++17
0 / 100
49 ms1152 KiB
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;

long long findGap(int T, int N)
{
    switch (T)
    {
    case 1:
    {
        long long a, b, x, y, max_d = 0;
        MinMax(0, 1e18, &a, &b);

        while (a + 1 < b)
        {
            MinMax(a + 1, b - 1, &x, &y);
            if (x != -1 && y != -1)
                max_d = max(max_d, max(x - a, b - y));
            else
                max_d = max(max_d, b - a);
            a = x;
            b = y;
        }

        return max_d;
    }
    case 2:
    {
        return 0;
    }
    }
}

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:32:1: warning: control reaches end of non-void function [-Wreturn-type]
   32 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...