insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:4:5: error: 'set' was not declared in this scope
4 | set<int> S;
| ^~~
insects.cpp:4:9: error: expected primary-expression before 'int'
4 | set<int> S;
| ^~~
insects.cpp:6:9: error: 'S' was not declared in this scope
6 | S.insert(i);
| ^
insects.cpp:10:9: error: 'vector' was not declared in this scope
10 | vector<int> borrar;
| ^~~~~~
insects.cpp:10:16: error: expected primary-expression before 'int'
10 | vector<int> borrar;
| ^~~
insects.cpp:11:20: error: 'S' was not declared in this scope
11 | for(auto x:S){
| ^
insects.cpp:12:13: error: 'move_inside' was not declared in this scope
12 | move_inside(x);
| ^~~~~~~~~~~
insects.cpp:13:21: error: 'press_button' was not declared in this scope
13 | int uwu=press_button();
| ^~~~~~~~~~~~
insects.cpp:16:17: error: 'borrar' was not declared in this scope
16 | borrar.push_back(x);
| ^~~~~~
insects.cpp:18:17: error: 'move_outside' was not declared in this scope
18 | move_outside(x);
| ^~~~~~~~~~~~
insects.cpp:21:20: error: 'borrar' was not declared in this scope
21 | for(auto x:borrar){
| ^~~~~~
insects.cpp:22:13: error: 'S' was not declared in this scope
22 | S.erase(x);
| ^
insects.cpp:25:13: error: 'min' was not declared in this scope
25 | ans=min(ans,act);
| ^~~