insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:15:25: error: 'sol' was not declared in this scope
15 | for (; !rest.empty(); sol++) {
| ^~~
insects.cpp:19:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int i = 0; i < tmp.size(); i++)
| ~~^~~~~~~~~~~~
insects.cpp:20:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | if (i < rest.size() + cnt) attempt(tmp[i], ans + 1);
| ~~^~~~~~~~~~~~~~~~~~~