Submission #713101

#TimeUsernameProblemLanguageResultExecution timeMemory
713101Vu_CG_CoderGap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <bits/stdc++.h>
#define ll long long
using namespace std;

#include "gap.h"

static void my_assert(int k){ if (!k) exit(1); }

static int subtask_num, N;
static long long A[100001];
static long long call_count;
int a[100100];

long long findGap(int, int);

void MinMax(long long s, long long t, long long *mn, long long *mx)
{
	int lo = 1, hi = N, left = N+1, right = 0;
	my_assert(s <= t && mn != NULL && mx != NULL);
	while (lo <= hi){
		int mid = (lo+hi)>>1;
		if (A[mid] >= s) hi = mid - 1, left = mid;
		else lo = mid + 1;
	}
	lo = 1, hi = N;
	while (lo <= hi){
		int mid = (lo+hi)>>1;
		if (A[mid] <= t) lo = mid + 1, right = mid;
		else hi = mid - 1;
	}
	if (left > right) *mn = *mx = -1;
	else{
		*mn = A[left];
		*mx = A[right];
	}
	if (subtask_num == 1) call_count++;
	else if (subtask_num == 2) call_count += right-left+2;
}

int main()
{
	FILE *in = stdin, *out = stdout;
	my_assert(2 == fscanf(in, "%d%d", &subtask_num, &N));
	my_assert(1 <= subtask_num && subtask_num <= 2);
	my_assert(2 <= N && N <= 100000);
	for (int i=1;i<=N;i++) my_assert(1 == fscanf(in, "%lld", A+i));
	for (int i=1;i<N;i++) my_assert(A[i] < A[i+1]);
	fprintf(out, "%lld\n", findGap(subtask_num, N));
	fprintf(out, "%lld\n", call_count);
}

long long findGap(int t , int n)
{
    long long l = 0 , r = 1e18;
    vector <long long> kq;

    for (int i = 1 ; i <= (n + 1)/2 ; i++)
    {
        ll s , t;
        MinMax(l,r,s,t);
        kq.push_back(s);
        kq.push_back(t);
        l = s + 1;
        r = t - 1;
    }

    sort(kq.begin(),kq.end());
    long long res = 0;

    for (int i = 1 ; i < kq.size() ; i++)
        res = max(res,a[i] - a[i - 1]);
    return res;
}

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:63:20: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   63 |         MinMax(l,r,s,t);
      |                    ^
      |                    |
      |                    long long int
gap.cpp:19:50: note:   initializing argument 3 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
   19 | void MinMax(long long s, long long t, long long *mn, long long *mx)
      |                                       ~~~~~~~~~~~^~
gap.cpp:63:22: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   63 |         MinMax(l,r,s,t);
      |                      ^
      |                      |
      |                      long long int
gap.cpp:19:65: note:   initializing argument 4 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
   19 | void MinMax(long long s, long long t, long long *mn, long long *mx)
      |                                                      ~~~~~~~~~~~^~
gap.cpp:73:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |     for (int i = 1 ; i < kq.size() ; i++)
      |                      ~~^~~~~~~~~~~
gap.cpp:74:38: error: no matching function for call to 'max(long long int&, int)'
   74 |         res = max(res,a[i] - a[i - 1]);
      |                                      ^
In file included from /usr/include/c++/10/vector:60,
                 from gap.cpp:3:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
gap.cpp:74:38: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   74 |         res = max(res,a[i] - a[i - 1]);
      |                                      ^
In file included from /usr/include/c++/10/vector:60,
                 from gap.cpp:3:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
gap.cpp:74:38: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   74 |         res = max(res,a[i] - a[i - 1]);
      |                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from gap.cpp:4:
/usr/include/c++/10/bits/stl_algo.h:3480:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3480 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3480:5: note:   template argument deduction/substitution failed:
gap.cpp:74:38: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   74 |         res = max(res,a[i] - a[i - 1]);
      |                                      ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from gap.cpp:4:
/usr/include/c++/10/bits/stl_algo.h:3486:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3486 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3486:5: note:   template argument deduction/substitution failed:
gap.cpp:74:38: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   74 |         res = max(res,a[i] - a[i - 1]);
      |                                      ^