triangle.cpp: In function 'int32_t main()':
triangle.cpp:29:56: error: no matching function for call to 'max(long long int, std::map<long int, long int>::mapped_type)'
29 | res += max(0ll, (ox[a[i].x] - 1) * (ox[a[i].y] - 1));
| ^
In file included from /usr/include/c++/9/bits/stl_tree.h:63,
from /usr/include/c++/9/map:60,
from triangle.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
222 | max(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: template argument deduction/substitution failed:
triangle.cpp:29:56: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'std::map<long int, long int>::mapped_type' {aka 'long int'})
29 | res += max(0ll, (ox[a[i].x] - 1) * (ox[a[i].y] - 1));
| ^
In file included from /usr/include/c++/9/bits/stl_tree.h:63,
from /usr/include/c++/9/map:60,
from triangle.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
268 | max(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: template argument deduction/substitution failed:
triangle.cpp:29:56: note: deduced conflicting types for parameter 'const _Tp' ('long long int' and 'std::map<long int, long int>::mapped_type' {aka 'long int'})
29 | res += max(0ll, (ox[a[i].x] - 1) * (ox[a[i].y] - 1));
| ^