Cod sursa(job #3355498)

Utilizator sorin.moraruMoraru Sorin-Sebastian sorin.moraru Data 22 mai 2026 22:25:01
Problema Problema rucsacului Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.49 kb
#include <bits/stdc++.h>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    ifstream fin("rucsac.in");
    ofstream fout("rucsac.out");

    int n, g;
    if (!(fin >> n >> g)) return 0;

    vector<int> dp(g + 1, 0);

    for (int i = 0; i < n; ++i) {
        int w, p;
        fin >> w >> p;
        for (int j = g; j >= w; --j) {
            dp[j] = max(dp[j], dp[j - w] + p);
        }
    }

    fout << dp[g] << "\n";

    return 0;
}