Cod sursa(job #1743324)

Utilizator Kln1000Ciobanu Bogdan Kln1000 Data 17 august 2016 22:55:50
Problema Problema rucsacului Scor 100
Compilator cpp Status done
Runda Arhiva educationala Marime 0.61 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream f ("rucsac.in");
ofstream t ("rucsac.out");

int main()
{

    uint64_t n,g,weight,profit,max=0,v[100010];
    f>>n>>g;
    for (uint64_t i=0; i<n; ++i)
    {
        f>>weight>>profit;
        for (int64_t j=g-weight; j>=0; --j)
            if(v[j]>0)
            {
                if(v[j]+profit>v[j+weight]) v[j+weight]=v[j]+profit;
                if(v[j+weight]>max) max=v[j+weight];
            }
        if(profit>v[weight]) v[weight]=profit;
        if(v[weight]>max) max=v[weight];
    }
    t<<max;
    return 0;
}