比赛 寒假归来,刮刮油 评测结果 AWWWWWWWWAAWWWWWWWWA
题目名称 还是“金明的预算方案” 最终得分 20
用户昵称 Twist Fate 运行时间 0.083 s
代码语言 Pascal 内存使用 3.18 MiB
提交时间 2016-02-25 20:17:16
显示代码纯文本
program chen;
var
	f,v,w,q,c:array[1..200000] of longint;
	i,j,m,n,s:longint;
begin
	assign(input,'budgetb.in');	reset(input);
	assign(output,'budgetb.out');	rewrite(output);
	readln(m,n,s);
	for i:=1 to n do begin
		readln(v[i],w[i],q[i]);
		if q[i]=0 then c[i]:=v[i]*w[i]
			else c[i]:=0;
	end;
	for i:=1 to n do 
		for j:=m downto v[i] do 
			if f[j-v[i]]+c[i]>f[j] then f[j]:=f[j-v[i]]+c[i];
	writeln(f[m]);
	close(input);	close(output);
end.