dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:34:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
34 | if (stick.size() < n && Query(vector(st.begin(), st.end())) == 0) {
| ~~~~~~~~~~~~~^~~
dango3.cpp:53:47: error: no matching function for call to 'shuffle(std::vector<int>::iterator, std::vector<int>::iterator)'
53 | shuffle(ord.begin(), ord.end());
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from dango3.cpp:3:
/usr/include/c++/10/bits/stl_algo.h:3748:5: note: candidate: 'template<class _RAIter, class _UGenerator> void std::shuffle(_RAIter, _RAIter, _UGenerator&&)'
3748 | shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last,
| ^~~~~~~
/usr/include/c++/10/bits/stl_algo.h:3748:5: note: template argument deduction/substitution failed:
dango3.cpp:53:47: note: candidate expects 3 arguments, 2 provided
53 | shuffle(ord.begin(), ord.end());
| ^