sequence.cpp: In function 'long long int dfs(std::vector<long long int>, long long int)':
sequence.cpp:34:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for(int i = 0 ; i < vj.size() ; i++){
| ~~^~~~~~~~~~~
sequence.cpp:44:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int j = 0 ;j < vec.size() ; j++){
| ~~^~~~~~~~~~~~
sequence.cpp:63:14: error: a function-definition is not allowed here before '{' token
63 | signed main(){
| ^
sequence.cpp:77:1: error: expected '}' at end of input
77 | }
| ^
sequence.cpp:16:39: note: to match this '{'
16 | int dfs(vector <int> vec , int ok = 1){
| ^
sequence.cpp:77:1: warning: control reaches end of non-void function [-Wreturn-type]
77 | }
| ^