Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- #include <vector>
- #include <queue>
- #include <algorithm>
- #include <string>
- #include <stack>
- #include <set>
- #include <map>
- #define pii pair <int,int>
- #define vec vector
- using namespace std;
- using ll = long long;
- using ld = long double;
- using db = double;
- void cv(vector <int> &v){
- for (auto x: v) cout<<x<<' ';
- cout<<"\n";
- }
- void cvl(vector <ll> &v){
- for (auto x: v) cout<<x<<' ';
- cout<<"\n";
- }
- void cvv(vector <vector <int> > &v){
- for (auto x: v) cv(x);
- cout<<"\n";
- }
- void cvb(vector <bool> v){
- for (bool x: v) cout<<x<<' ';
- cout<<"\n";
- }
- void cvs(vector <string> v){
- for (auto a: v){
- cout<<a<<"\n";
- }
- }
- int main()
- {
- ios::sync_with_stdio(0);
- cin.tie(0);
- cout.tie(0);
- int n,m;
- cin>>n>>m;
- vector <int> w(n+1);
- for (int i=1;i<=n;++i)cin>>w[i];
- //cout<<"n m = "<<n<<' '<<m<<"\n";
- //cout<<"w\n";
- //cv(w);
- vector <vector <int> > dp(n+1 , vector <int> (m+1, 0));
- //dp[n][m] - ans
- for (int i = 1; i <= n; ++i){
- for (int j = 1; j <= m; ++j){
- //можем взять i первых предемтов -- и сейчас берем i-й предмет
- //вместимость сейчас = j
- if (j - w[i] < 0){//если не вмещается
- dp[i][j] = dp[i-1][j];
- continue;
- }
- dp[i][j] = max(dp[i-1][j], dp[i-1][j - w[i]] + w[i]);
- /* if (j >= w[i]){
- dp[i][j] = max(dp[i-1][j], dp[i-1][j - w[i]] + w[i]);
- }
- else{
- }*/
- }
- }
- //cout<<"dp\n";
- //cvv(dp);
- cout<<dp[n][m];
- }
- /*
- 2 3195
- 38 41
- 2 80
- 38 41
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement