# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
375950 | ponytail | Boxes with souvenirs (IOI15_boxes) | C++17 | Compilation error | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "boxes.h"
#include "bits/stdc++.h"
#define ll long long
using namespace std;
ll delivery(int N,int K,int L,int positions[]){
if(K==1){
ll ans=0;
for(int i=0;i<N;i++){
ans+=min(positions[i],L-positions[i])*2;
}
return ans;
}
if(K==N){
ll ans=1e18;
ans=min(ans,L);
ans=min(ans,(L-positions[0])*2);
ans=min(ans,positions[N-1]*2);
return ans;
}
}
Compilation message (stderr)
boxes.cpp: In function 'long long int delivery(int, int, int, int*)': boxes.cpp:15:22: error: no matching function for call to 'min(long long int&, int&)' 15 | ans=min(ans,L); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:198:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)' 198 | min(const _Tp& __a, const _Tp& __b) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:198:5: note: template argument deduction/substitution failed: boxes.cpp:15:22: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 15 | ans=min(ans,L); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:246:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)' 246 | min(const _Tp& __a, const _Tp& __b, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:246:5: note: template argument deduction/substitution failed: boxes.cpp:15:22: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 15 | ans=min(ans,L); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3444:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)' 3444 | min(initializer_list<_Tp> __l) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3444:5: note: template argument deduction/substitution failed: boxes.cpp:15:22: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 15 | ans=min(ans,L); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3450:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)' 3450 | min(initializer_list<_Tp> __l, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3450:5: note: template argument deduction/substitution failed: boxes.cpp:15:22: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 15 | ans=min(ans,L); | ^ boxes.cpp:16:39: error: no matching function for call to 'min(long long int&, int)' 16 | ans=min(ans,(L-positions[0])*2); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:198:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)' 198 | min(const _Tp& __a, const _Tp& __b) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:198:5: note: template argument deduction/substitution failed: boxes.cpp:16:39: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 16 | ans=min(ans,(L-positions[0])*2); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:246:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)' 246 | min(const _Tp& __a, const _Tp& __b, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:246:5: note: template argument deduction/substitution failed: boxes.cpp:16:39: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 16 | ans=min(ans,(L-positions[0])*2); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3444:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)' 3444 | min(initializer_list<_Tp> __l) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3444:5: note: template argument deduction/substitution failed: boxes.cpp:16:39: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 16 | ans=min(ans,(L-positions[0])*2); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3450:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)' 3450 | min(initializer_list<_Tp> __l, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3450:5: note: template argument deduction/substitution failed: boxes.cpp:16:39: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 16 | ans=min(ans,(L-positions[0])*2); | ^ boxes.cpp:17:37: error: no matching function for call to 'min(long long int&, int)' 17 | ans=min(ans,positions[N-1]*2); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:198:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)' 198 | min(const _Tp& __a, const _Tp& __b) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:198:5: note: template argument deduction/substitution failed: boxes.cpp:17:37: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 17 | ans=min(ans,positions[N-1]*2); | ^ In file included from /usr/include/c++/9/bits/specfun.h:45, from /usr/include/c++/9/cmath:1927, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algobase.h:246:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)' 246 | min(const _Tp& __a, const _Tp& __b, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algobase.h:246:5: note: template argument deduction/substitution failed: boxes.cpp:17:37: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int') 17 | ans=min(ans,positions[N-1]*2); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3444:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)' 3444 | min(initializer_list<_Tp> __l) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3444:5: note: template argument deduction/substitution failed: boxes.cpp:17:37: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 17 | ans=min(ans,positions[N-1]*2); | ^ In file included from /usr/include/c++/9/algorithm:62, from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65, from boxes.cpp:2: /usr/include/c++/9/bits/stl_algo.h:3450:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)' 3450 | min(initializer_list<_Tp> __l, _Compare __comp) | ^~~ /usr/include/c++/9/bits/stl_algo.h:3450:5: note: template argument deduction/substitution failed: boxes.cpp:17:37: note: mismatched types 'std::initializer_list<_Tp>' and 'long long int' 17 | ans=min(ans,positions[N-1]*2); | ^ boxes.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type] 20 | } | ^