longesttrip.cpp: In function 'vi longest_trip(int, int)':
longesttrip.cpp:101:9: error: expected ',' or ';' before 'deque'
101 | deque<int> path1, path2;
| ^~~~~
longesttrip.cpp:102:9: error: 'path1' was not declared in this scope
102 | path1.pb(0);
| ^~~~~
longesttrip.cpp:109:32: error: 'path2' was not declared in this scope
109 | else if (getCon(i, path2[0])
| ^~~~~
longesttrip.cpp:109:41: error: expected ')' before '{' token
109 | else if (getCon(i, path2[0])
| ~ ^
| )
110 | {
| ~
longesttrip.cpp:119:9: error: expected primary-expression before '}' token
119 | }
| ^
longesttrip.cpp:122:26: error: 'path2' was not declared in this scope
122 | for (int j : path2)
| ^~~~~
longesttrip.cpp:121:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
121 | for (int i : path1)
| ^~~
longesttrip.cpp:127:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
127 | if (sz(path1) < sz(path2)) swap(path1, path2);
| ^~
longesttrip.cpp:127:32: error: 'path2' was not declared in this scope
127 | if (sz(path1) < sz(path2)) swap(path1, path2);
| ^~~~~
longesttrip.cpp:24:21: note: in definition of macro 'sz'
24 | #define sz(x) (int)(x).size()
| ^
longesttrip.cpp:132:38: error: 'path2' was not declared in this scope
132 | if (getCon(path1[0], path2[0]))
| ^~~~~
longesttrip.cpp:165:21: error: 'path2' was not declared in this scope
165 | loop(sz(path2), ix)
| ^~~~~
longesttrip.cpp:14:41: note: in definition of macro 'loop'
14 | #define loop(x, i) for (int i = 0; i < (x); i++)
| ^
longesttrip.cpp:165:18: note: in expansion of macro 'sz'
165 | loop(sz(path2), ix)
| ^~
longesttrip.cpp:180:37: error: 'path2' was not declared in this scope
180 | for (int i = s2; i < sz(path2); i++)
| ^~~~~
longesttrip.cpp:24:21: note: in definition of macro 'sz'
24 | #define sz(x) (int)(x).size()
| ^
longesttrip.cpp:186:24: error: 'path2' was not declared in this scope
186 | res.pb(path2[i]);
| ^~~~~
longesttrip.cpp:191:30: error: 'path2' was not declared in this scope
191 | if (sz(path1)>sz(path2))
| ^~~~~
longesttrip.cpp:24:21: note: in definition of macro 'sz'
24 | #define sz(x) (int)(x).size()
| ^
In file included from /usr/include/c++/10/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp:45,
from /usr/include/c++/10/ext/pb_ds/detail/container_base_dispatch.hpp:90,
from /usr/include/c++/10/ext/pb_ds/assoc_container.hpp:48,
from longesttrip.cpp:5:
longesttrip.cpp:204:40: error: no match for 'operator[]' (operand types are 'std::map<std::pair<int, int>, bool>' and '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'})
204 | loop(sz(res) - 1, i) assert(con[res[i]][res[i + 1]]);
| ^
In file included from /usr/include/c++/10/map:61,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:81,
from longesttrip.cpp:4:
/usr/include/c++/10/bits/stl_map.h:492:7: note: candidate: 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = std::pair<int, int>; _Tp = bool; _Compare = std::less<std::pair<int, int> >; _Alloc = std::allocator<std::pair<const std::pair<int, int>, bool> >; std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = bool; std::map<_Key, _Tp, _Compare, _Alloc>::key_type = std::pair<int, int>]'
492 | operator[](const key_type& __k)
| ^~~~~~~~
/usr/include/c++/10/bits/stl_map.h:492:34: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} to 'const key_type&' {aka 'const std::pair<int, int>&'}
492 | operator[](const key_type& __k)
| ~~~~~~~~~~~~~~~~^~~
/usr/include/c++/10/bits/stl_map.h:512:7: note: candidate: 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](std::map<_Key, _Tp, _Compare, _Alloc>::key_type&&) [with _Key = std::pair<int, int>; _Tp = bool; _Compare = std::less<std::pair<int, int> >; _Alloc = std::allocator<std::pair<const std::pair<int, int>, bool> >; std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = bool; std::map<_Key, _Tp, _Compare, _Alloc>::key_type = std::pair<int, int>]'
512 | operator[](key_type&& __k)
| ^~~~~~~~
/usr/include/c++/10/bits/stl_map.h:512:29: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} to 'std::map<std::pair<int, int>, bool>::key_type&&' {aka 'std::pair<int, int>&&'}
512 | operator[](key_type&& __k)
| ~~~~~~~~~~~^~~