mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:77:6: error: conflicting declaration 'int a'
77 | int a = 0;
| ^
mushrooms.cpp:45:14: note: previous declaration as 'std::vector<int> a'
45 | vector<int> a, b;
| ^
mushrooms.cpp:82:47: error: no matching function for call to 'min(std::vector<int>::size_type, int)'
82 | for (int j = 0; j > min(a.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/vector:60,
from mushrooms.h:1,
from mushrooms.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
230 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: template argument deduction/substitution failed:
mushrooms.cpp:82:47: note: deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
82 | for (int j = 0; j > min(a.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/vector:60,
from mushrooms.h:1,
from mushrooms.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: template argument deduction/substitution failed:
mushrooms.cpp:82:47: note: deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
82 | for (int j = 0; j > min(a.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from mushrooms.cpp:2:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
3468 | min(initializer_list<_Tp> __l)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: template argument deduction/substitution failed:
mushrooms.cpp:82:47: note: mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
82 | for (int j = 0; j > min(a.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from mushrooms.cpp:2:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
3474 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: template argument deduction/substitution failed:
mushrooms.cpp:82:47: note: mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
82 | for (int j = 0; j > min(a.size() - 1, n - i); ++j) {
| ^
mushrooms.cpp:86:6: error: no match for 'operator+=' (operand types are 'std::vector<int>' and 'std::vector<int>::size_type' {aka 'long unsigned int'})
86 | a += (a.size() - 1) - (use_machine(pass) / 2);
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mushrooms.cpp:88:10: error: cannot convert 'std::vector<int>' to 'int' in return
88 | return a;
| ^
mushrooms.cpp:93:46: error: no matching function for call to 'min(std::vector<int>::size_type, int)'
93 | for (int j = 0; j > min(b.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/vector:60,
from mushrooms.h:1,
from mushrooms.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
230 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: template argument deduction/substitution failed:
mushrooms.cpp:93:46: note: deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
93 | for (int j = 0; j > min(b.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/vector:60,
from mushrooms.h:1,
from mushrooms.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: template argument deduction/substitution failed:
mushrooms.cpp:93:46: note: deduced conflicting types for parameter 'const _Tp' ('long unsigned int' and 'int')
93 | for (int j = 0; j > min(b.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from mushrooms.cpp:2:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
3468 | min(initializer_list<_Tp> __l)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: template argument deduction/substitution failed:
mushrooms.cpp:93:46: note: mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
93 | for (int j = 0; j > min(b.size() - 1, n - i); ++j) {
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from mushrooms.cpp:2:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
3474 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: template argument deduction/substitution failed:
mushrooms.cpp:93:46: note: mismatched types 'std::initializer_list<_Tp>' and 'long unsigned int'
93 | for (int j = 0; j > min(b.size() - 1, n - i); ++j) {
| ^
mushrooms.cpp:97:5: error: no match for 'operator+=' (operand types are 'std::vector<int>' and 'int')
97 | a += use_machine(pass) / 2;
| ~~^~~~~~~~~~~~~~~~~~~~~~~~
mushrooms.cpp:99:9: error: cannot convert 'std::vector<int>' to 'int' in return
99 | return a;
| ^