chase.cpp: In function 'll dfs(int, int, int)':
chase.cpp:18:5: warning: unused variable 'resp1' [-Wunused-variable]
ll resp1 = 0, resp2 = 0, cont = 0;
^~~~~
chase.cpp:18:16: warning: unused variable 'resp2' [-Wunused-variable]
ll resp1 = 0, resp2 = 0, cont = 0;
^~~~~
chase.cpp:18:27: warning: unused variable 'cont' [-Wunused-variable]
ll resp1 = 0, resp2 = 0, cont = 0;
^~~~
chase.cpp: In function 'int main()':
chase.cpp:58:2: error: 'resp' was not declared in this scope
resp = max(dfs(1, v, 0), dfs(1, v-1, 0) + soma[1]);
^~~~
chase.cpp:58:2: note: suggested alternative: 'frexp'
resp = max(dfs(1, v, 0), dfs(1, v-1, 0) + soma[1]);
^~~~
frexp
chase.cpp:67:22: error: 'k' was not declared in this scope
resp = max(dfs(i, k, 0), dfs(i, k-1, 0) + soma[i]);
^