0_0_33015659_21153.cpp: In function 'int main()':
0_0_33015659_21153.cpp:9:27: error: expected initializer before 'vector'
vector<vector<int> > dp vector<int>(v+1,0);
^
0_0_33015659_21153.cpp:27:3: error: 'dp' was not declared in this scope
dp[i] = max(dp[i-bone[i]]+value[i],dp[i]);
^
0_0_33015659_21153.cpp:32:8: error: 'dp' was not declared in this scope
cout<<dp[n-1]<<endl;
^
|