tracks.cpp: In function 'int main()':
tracks.cpp:19:21: error: no matching function for call to 'std::deque<std::tuple<int, int> >::push_back(int, int)'
19 | que[cur].push_back(0, 0), vis[0][0] = true;
| ~~~~~~~~~~~~~~~~~~^~~~~~
In file included from /usr/include/c++/11/deque:67,
from tracks.cpp:4:
/usr/include/c++/11/bits/stl_deque.h:1496:7: note: candidate: 'void std::deque<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = std::tuple<int, int>; _Alloc = std::allocator<std::tuple<int, int> >; std::deque<_Tp, _Alloc>::value_type = std::tuple<int, int>]'
1496 | push_back(const value_type& __x)
| ^~~~~~~~~
/usr/include/c++/11/bits/stl_deque.h:1496:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/11/bits/stl_deque.h:1511:7: note: candidate: 'void std::deque<_Tp, _Alloc>::push_back(std::deque<_Tp, _Alloc>::value_type&&) [with _Tp = std::tuple<int, int>; _Alloc = std::allocator<std::tuple<int, int> >; std::deque<_Tp, _Alloc>::value_type = std::tuple<int, int>]'
1511 | push_back(value_type&& __x)
| ^~~~~~~~~
/usr/include/c++/11/bits/stl_deque.h:1511:7: note: candidate expects 1 argument, 2 provided
tracks.cpp:34:24: error: no matching function for call to 'std::deque<std::tuple<int, int> >::push_back(int&, int&)'
34 | que[nq].push_back(nr, nc);
| ~~~~~~~~~~~~~~~~~^~~~~~~~
In file included from /usr/include/c++/11/deque:67,
from tracks.cpp:4:
/usr/include/c++/11/bits/stl_deque.h:1496:7: note: candidate: 'void std::deque<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = std::tuple<int, int>; _Alloc = std::allocator<std::tuple<int, int> >; std::deque<_Tp, _Alloc>::value_type = std::tuple<int, int>]'
1496 | push_back(const value_type& __x)
| ^~~~~~~~~
/usr/include/c++/11/bits/stl_deque.h:1496:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/11/bits/stl_deque.h:1511:7: note: candidate: 'void std::deque<_Tp, _Alloc>::push_back(std::deque<_Tp, _Alloc>::value_type&&) [with _Tp = std::tuple<int, int>; _Alloc = std::allocator<std::tuple<int, int> >; std::deque<_Tp, _Alloc>::value_type = std::tuple<int, int>]'
1511 | push_back(value_type&& __x)
| ^~~~~~~~~
/usr/include/c++/11/bits/stl_deque.h:1511:7: note: candidate expects 1 argument, 2 provided