/in/foo.cc: In function 'int main()':
/in/foo.cc:5:2: error: 'cin' was not declared in this scope
cin>>m>>n;
^~~
/in/foo.cc:5:2: note: suggested alternative:
In file included from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:75:0,
from /in/foo.cc:1:
/usr/include/c++/6/iostream:60:18: note: 'std::cin'
extern istream cin; /// Linked to standard input
^~~
/in/foo.cc:15:38: error: 'max' was not declared in this scope
dp[j] = max(dp[j],dp[j-A[i]]+V[i]);
^
/in/foo.cc:15:38: note: suggested alternative:
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algo.h:3465:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^~~
/in/foo.cc:18:24: error: 'max' was not declared in this scope
maxn = max(maxn,dp[i]);
^
/in/foo.cc:18:24: note: suggested alternative:
In file included from /usr/include/c++/6/algorithm:62:0,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:65,
from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_algo.h:3465:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^~~
/in/foo.cc:20:2: error: 'cout' was not declared in this scope
cout<<maxn<<endl;
^~~~
/in/foo.cc:20:2: note: suggested alternative:
In file included from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:75:0,
from /in/foo.cc:1:
/usr/include/c++/6/iostream:61:18: note: 'std::cout'
extern ostream cout; /// Linked to standard output
^~~~
/in/foo.cc:20:14: error: 'endl' was not declared in this scope
cout<<maxn<<endl;
^~~~
/in/foo.cc:20:14: note: suggested alternative:
In file included from /usr/include/c++/6/istream:39:0,
from /usr/include/c++/6/sstream:38,
from /usr/include/c++/6/complex:45,
from /usr/include/c++/6/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
from /in/foo.cc:1:
/usr/include/c++/6/ostream:590:5: note: 'std::endl'
endl(basic_ostream<_CharT, _Traits>& __os)
^~~~