Cod sursa(job #2150925)

Utilizator _Victor_Victor Ciobanu _Victor_ Data 3 martie 2018 21:33:40
Problema Problema rucsacului Scor 10
Compilator fpc Status done
Runda Arhiva educationala Marime 0.5 kb
Program ProbDisRuc;
type natural = 0..10000;
tab = array[natural] of natural;
obj = record
 g,p:natural;
 end;
var a:array[natural] of obj;
b:tab;
i,j,n,w:natural;
f,g:text;
begin
assign(f,'rucsac.in');
assign(g,'rucsac.out');
reset(f);
rewrite(g);
readln(f,n,w);
for i:=1 to n do
 readln(f,a[i].g,a[i].p);
for i:=1 to n do begin
 for j:=w downto a[i].g do
  if b[j]<b[j-a[i].g]+a[i].p then begin
    b[j]:=b[j-a[i].g]+a[i].p;
   end;
end;
writeln(g,b[w]);
close(f);
close(g);
end.