gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:13:3: error: 'vector' was not declared in this scope
vector < ll > vec;
^
gap.cpp:13:3: note: suggested alternative:
In file included from /usr/include/c++/5/vector:64:0,
from /usr/include/c++/5/bits/random.h:34,
from /usr/include/c++/5/random:49,
from /usr/include/c++/5/bits/stl_algo.h:66,
from /usr/include/c++/5/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/5/bits/stdc++.h:64,
from gap.cpp:1:
/usr/include/c++/5/bits/stl_vector.h:214:11: note: 'std::vector'
class vector : protected _Vector_base<_Tp, _Alloc>
^
gap.cpp:4:12: error: expected primary-expression before 'long'
#define ll long long
^
gap.cpp:13:12: note: in expansion of macro 'll'
vector < ll > vec;
^
gap.cpp:15:30: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
MinMax(left, right, mn, mx);
^
In file included from gap.cpp:2:0:
gap.h:1:6: note: initializing argument 3 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
void MinMax(long long, long long, long long*, long long*);
^
gap.cpp:15:30: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
MinMax(left, right, mn, mx);
^
In file included from gap.cpp:2:0:
gap.h:1:6: note: initializing argument 4 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
void MinMax(long long, long long, long long*, long long*);
^
gap.cpp:16:4: error: 'vec' was not declared in this scope
vec.pb(mn);
^
gap.cpp:22:8: error: 'vec' was not declared in this scope
sort(vec.begin(), vec.end());
^
gap.cpp:22:30: error: 'sort' was not declared in this scope
sort(vec.begin(), vec.end());
^
gap.cpp:22:30: note: suggested alternative:
In file included from /usr/include/c++/5/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/5/bits/stdc++.h:64,
from gap.cpp:1:
/usr/include/c++/5/bits/stl_algo.h:4718:5: note: 'std::sort'
sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
^
gap.cpp:25:38: error: 'max' was not declared in this scope
ans = max(ans, vec[i] - vec[i - 1]);
^
gap.cpp:25:38: note: suggested alternative:
In file included from /usr/include/c++/5/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/5/bits/stdc++.h:64,
from gap.cpp:1:
/usr/include/c++/5/bits/stl_algo.h:3463:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^