swap.cpp: In function 'void init(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
swap.cpp:11:9: error: 'm' was not declared in this scope
11 | n = N, m = M;
| ^
swap.cpp: In function 'int getMinimumFuelCapacity(int, int)':
swap.cpp:20:17: error: 'm' was not declared in this scope
20 | for(int i=0;i<m;i++) if(e[i].s.s != y) {
| ^
swap.cpp:25:21: error: 'm' was not declared in this scope
25 | else for(int i=0;i<m;i++) if(e[i].s.s != x && e[i].s.s != y) return max(to[x], to[y], e[i].f);
| ^
In file included from /usr/include/c++/10/vector:60,
from swap.h:1,
from swap.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h: In instantiation of 'constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare) [with _Tp = int; _Compare = int]':
swap.cpp:25:94: required from here
/usr/include/c++/10/bits/stl_algobase.h:303:17: error: '__comp' cannot be used as a function
303 | if (__comp(__a, __b))
| ~~~~~~^~~~~~~~~~