Pagini recente » Cod sursa (job #2277355) | Cod sursa (job #1613944) | Cod sursa (job #2964869) | Cod sursa (job #2904002) | Cod sursa (job #1685528)
#include <iostream>
#include <fstream>
#include <utility>
#include <vector>
#include <map>
using namespace std;
vector<pair<int, int> > Ob;
int nrO, G, a, b, pMax;
void RucsacNxG ();
void RucsacHash ();
void Read ();
int main()
{
Read();
//RucsacNxG();
RucsacHash();
}
void RucsacHash()
{
map<int, int> M, M2;
M2.insert(make_pair(0, 0));
int Solution = -((1<<30)-1);
for(int i = 1; i <= nrO; ++i)
{
M.insert(make_pair(0, 0));
for(map<int, int>::reverse_iterator it = M.rbegin(); it != M.rend(); ++it)
{
int newG = it->first + Ob[i].first;
if(newG <= G) { // Adauga un nou obiect
int newProfit = it->second + Ob[i].second;
int &s = M[newG];
if(s == 0 || newProfit > s)
s = newProfit;
}
}
}
for(map<int, int>::iterator it = M.begin(); it != M.end() && it->first <= G; ++it)
Solution = max(Solution, it->second);
cout<<Solution<<'\n';
}
void RucsacNxG()
{
vector<int>D(G+1);
for(int o=1; o<=nrO; ++o)
for( int g=G; g>=0; --g)
if(Ob[o].first <= g)
D[g] = max(D[g], (D[g - Ob[o].first] + Ob[o].second) );
for(int i=0; i<=G; ++i)
pMax = max(pMax, D[i]);
cout<<pMax<<'\n';
}
void Read ()
{
freopen("rucsac.in", "rt", stdin);
freopen("rucsac.out", "wt", stdout);
scanf("%d%d", &nrO, &G);
Ob.push_back(make_pair(0, 0));
for(int i=1; i<=nrO; ++i){
scanf("%d%d", &a, &b);
Ob.push_back(make_pair(a, b));
}
}