Submission #1012013

# Submission time Handle Problem Language Result Execution time Memory
1012013 2024-07-01T14:25:06 Z codefox Gap (APIO16_gap) C++14
Compilation error
0 ms 0 KB
#include "gap.h"

#define ll long long

long long findGap(int T, int N)
{
    ll l = 0;
    ll r = 1e18;
    int mxdist = 0;
    ll nl = 0;
    ll nr = 0;
    ll fl = -1;
    ll fr = -1;
    while (nl != -1 && l <= r)
    {
        MinMax(l, r, nl, nr);
        if (fl != -1) mxdist = max(mxdist, nl-fl);
        if (fr != -1) mxdist = max(mxdist, fr-nr);
        fl = nl;
        fr = nr;
        l = nl+1;
        r = nr-1;
    }
    mxdist = max(mxdist, fr-fl);
    return mxdist;
	return 0;
}

Compilation message

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:16:22: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   16 |         MinMax(l, r, nl, nr);
      |                      ^~
      |                      |
      |                      long long int
In file included from gap.cpp:1:
gap.h:1:35: note:   initializing argument 3 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
    1 | void MinMax(long long, long long, long long*, long long*);
      |                                   ^~~~~~~~~~
gap.cpp:16:26: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   16 |         MinMax(l, r, nl, nr);
      |                          ^~
      |                          |
      |                          long long int
In file included from gap.cpp:1:
gap.h:1:47: note:   initializing argument 4 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
    1 | void MinMax(long long, long long, long long*, long long*);
      |                                               ^~~~~~~~~~
gap.cpp:17:32: error: 'max' was not declared in this scope
   17 |         if (fl != -1) mxdist = max(mxdist, nl-fl);
      |                                ^~~
gap.cpp:18:32: error: 'max' was not declared in this scope
   18 |         if (fr != -1) mxdist = max(mxdist, fr-nr);
      |                                ^~~
gap.cpp:24:14: error: 'max' was not declared in this scope
   24 |     mxdist = max(mxdist, fr-fl);
      |              ^~~