vault.cpp: In function 'int main()':
vault.cpp:37:29: error: 'y' was not declared in this scope
37 | values1[y+k]=std::max(values1[y]+1,values1[y+k]);
| ^
vault.cpp:43:27: error: 'tmv' was not declared in this scope; did you mean 'tm'?
43 | for(int y=tmv-1-k;y>=0;y--){
| ^~~
| tm
vault.cpp:44:21: error: 'values2' was not declared in this scope
44 | values2[y+k]=std::max(values2[y]+1,values2[y+k]);
| ^~~~~~~
vault.cpp:49:23: error: 'tmv' was not declared in this scope; did you mean 'tm'?
49 | for(int i=0;i<tmv&&i-l<tmv;i++){
| ^~~
| tm
vault.cpp:51:40: error: 'values1' was not declared in this scope
51 | totalmax=std::max(totalmax,values1[i]+values2[i-l]);
| ^~~~~~~
vault.cpp:51:51: error: 'values2' was not declared in this scope
51 | totalmax=std::max(totalmax,values1[i]+values2[i-l]);
| ^~~~~~~
vault.cpp: At global scope:
vault.cpp:55:1: error: expected declaration before '}' token
55 | }
| ^