Submission #40757

# Submission time Handle Problem Language Result Execution time Memory
40757 2018-02-08T04:58:04 Z Just_Solve_The_Problem Gap (APIO16_gap) C++11
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include <gap.h>

#define ll long long
#define pb push_back

ll findGap(int t, int n) {
		ll left;
		ll right;
		left = 1;
		right = 1e18;
		ll mn, mx;
		vector < ll > vec;
		while (mn != mx) {
			MinMax(left, right, mn, mx);
			vec.pb(mn); 
			if (mn != mx)
				vec.pb(mx);
			left = mn + 1;
			right= mx - 1;	
		}
		sort(vec.begin(), vec.end());
		ll ans = 0;
		for (int i = 1; i < vec.size(); i++) {
			ans = max(ans, vec[i] - vec[i - 1]);
		}
		return ans;
}

Compilation message

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)
     ^