race.cpp: In function 'void dfs(long long int, long long int)':
race.cpp:23:24: error: no matching function for call to 'begin(std::pair<long long int, long long int>&)'
23 | for (auto &i: adj[u]) {
| ^
In file included from /usr/include/c++/13/bits/algorithmfwd.h:39,
from /usr/include/c++/13/bits/stl_algo.h:59,
from /usr/include/c++/13/algorithm:61,
from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:51,
from race.cpp:2:
/usr/include/c++/13/initializer_list:88:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::begin(initializer_list<_Tp>)'
88 | begin(initializer_list<_Tp> __ils) noexcept
| ^~~~~
/usr/include/c++/13/initializer_list:88:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'std::initializer_list<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
In file included from /usr/include/c++/13/string:53,
from /usr/include/c++/13/bitset:52,
from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:52:
/usr/include/c++/13/bits/range_access.h:52:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(_Container&)'
52 | begin(_Container& __cont) -> decltype(__cont.begin())
| ^~~~~
/usr/include/c++/13/bits/range_access.h:52:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(_Container&) [with _Container = std::pair<long long int, long long int>]':
race.cpp:23:24: required from here
/usr/include/c++/13/bits/range_access.h:52:50: error: 'struct std::pair<long long int, long long int>' has no member named 'begin'
52 | begin(_Container& __cont) -> decltype(__cont.begin())
| ~~~~~~~^~~~~
/usr/include/c++/13/bits/range_access.h:63:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(const _Container&)'
63 | begin(const _Container& __cont) -> decltype(__cont.begin())
| ^~~~~
/usr/include/c++/13/bits/range_access.h:63:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.begin()) std::begin(const _Container&) [with _Container = std::pair<long long int, long long int>]':
race.cpp:23:24: required from here
/usr/include/c++/13/bits/range_access.h:63:56: error: 'const struct std::pair<long long int, long long int>' has no member named 'begin'
63 | begin(const _Container& __cont) -> decltype(__cont.begin())
| ~~~~~~~^~~~~
/usr/include/c++/13/bits/range_access.h:95:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::begin(_Tp (&)[_Nm])'
95 | begin(_Tp (&__arr)[_Nm]) noexcept
| ^~~~~
/usr/include/c++/13/bits/range_access.h:95:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: mismatched types '_Tp [_Nm]' and 'std::pair<long long int, long long int>'
23 | for (auto &i: adj[u]) {
| ^
In file included from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:166:
/usr/include/c++/13/valarray:1227:5: note: candidate: 'template<class _Tp> _Tp* std::begin(valarray<_Tp>&)'
1227 | begin(valarray<_Tp>& __va) noexcept
| ^~~~~
/usr/include/c++/13/valarray:1227:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'std::valarray<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
/usr/include/c++/13/valarray:1238:5: note: candidate: 'template<class _Tp> const _Tp* std::begin(const valarray<_Tp>&)'
1238 | begin(const valarray<_Tp>& __va) noexcept
| ^~~~~
/usr/include/c++/13/valarray:1238:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'const std::valarray<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
race.cpp:23:24: error: no matching function for call to 'end(std::pair<long long int, long long int>&)'
/usr/include/c++/13/initializer_list:99:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::end(initializer_list<_Tp>)'
99 | end(initializer_list<_Tp> __ils) noexcept
| ^~~
/usr/include/c++/13/initializer_list:99:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'std::initializer_list<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
/usr/include/c++/13/bits/range_access.h:74:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.end()) std::end(_Container&)'
74 | end(_Container& __cont) -> decltype(__cont.end())
| ^~~
/usr/include/c++/13/bits/range_access.h:74:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.end()) std::end(_Container&) [with _Container = std::pair<long long int, long long int>]':
race.cpp:23:24: required from here
/usr/include/c++/13/bits/range_access.h:74:48: error: 'struct std::pair<long long int, long long int>' has no member named 'end'
74 | end(_Container& __cont) -> decltype(__cont.end())
| ~~~~~~~^~~
/usr/include/c++/13/bits/range_access.h:85:5: note: candidate: 'template<class _Container> constexpr decltype (__cont.end()) std::end(const _Container&)'
85 | end(const _Container& __cont) -> decltype(__cont.end())
| ^~~
/usr/include/c++/13/bits/range_access.h:85:5: note: template argument deduction/substitution failed:
/usr/include/c++/13/bits/range_access.h: In substitution of 'template<class _Container> constexpr decltype (__cont.end()) std::end(const _Container&) [with _Container = std::pair<long long int, long long int>]':
race.cpp:23:24: required from here
/usr/include/c++/13/bits/range_access.h:85:54: error: 'const struct std::pair<long long int, long long int>' has no member named 'end'
85 | end(const _Container& __cont) -> decltype(__cont.end())
| ~~~~~~~^~~
/usr/include/c++/13/bits/range_access.h:106:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::end(_Tp (&)[_Nm])'
106 | end(_Tp (&__arr)[_Nm]) noexcept
| ^~~
/usr/include/c++/13/bits/range_access.h:106:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: mismatched types '_Tp [_Nm]' and 'std::pair<long long int, long long int>'
23 | for (auto &i: adj[u]) {
| ^
/usr/include/c++/13/valarray:1249:5: note: candidate: 'template<class _Tp> _Tp* std::end(valarray<_Tp>&)'
1249 | end(valarray<_Tp>& __va) noexcept
| ^~~
/usr/include/c++/13/valarray:1249:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'std::valarray<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
/usr/include/c++/13/valarray:1265:5: note: candidate: 'template<class _Tp> const _Tp* std::end(const valarray<_Tp>&)'
1265 | end(const valarray<_Tp>& __va) noexcept
| ^~~
/usr/include/c++/13/valarray:1265:5: note: template argument deduction/substitution failed:
race.cpp:23:24: note: 'std::pair<long long int, long long int>' is not derived from 'const std::valarray<_Tp>'
23 | for (auto &i: adj[u]) {
| ^
race.cpp: In function 'long long int best_path(long long int, long long int, long long int (*)[2], long long int*)':
race.cpp:53:22: error: '__gnu_cxx::__alloc_traits<std::allocator<std::pair<long long int, long long int> >, std::pair<long long int, long long int> >::value_type' {aka 'struct std::pair<long long int, long long int>'} has no member named 'push_back'
53 | adj[H[i][0]].push_back({H[i][1], L[i]});
| ^~~~~~~~~
race.cpp:54:22: error: '__gnu_cxx::__alloc_traits<std::allocator<std::pair<long long int, long long int> >, std::pair<long long int, long long int> >::value_type' {aka 'struct std::pair<long long int, long long int>'} has no member named 'push_back'
54 | adj[H[i][1]].push_back({H[i][0], L[i]});
| ^~~~~~~~~