Submission #40761

# Submission time Handle Problem Language Result Execution time Memory
40761 2018-02-08T05:12:39 Z Just_Solve_The_Problem Gap (APIO16_gap) C++11
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include <gap.h>
                               
long long findGap(int t, int n) {
		long long left;
		long long right;
		left = 1;
		right = 1e18;
		long long mn, mx;        
		long long vec[n];
		int cnt = 0;
		while (mn != mx) {
			MinMax(left, right, &mn, &mx);
			vec[cnt++] = mn; 
			if (mn != mx)
				vec[cnt++] = mx;
			left = mn + 1;
			right= mx - 1;	
		}
		sort(vec, vec + n);
		long long ans = 0;
		for (int i = 1; i < n; 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:20:20: error: 'sort' was not declared in this scope
   sort(vec, vec + n);
                    ^
gap.cpp:20:20: 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:23:38: error: 'max' was not declared in this scope
    ans = max(ans, vec[i] - vec[i - 1]);
                                      ^
gap.cpp:23: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)
     ^