Codeforces Round #119 (Div. 2) / 189A Cut Ribbon (完全背包)

A. Cut Ribbon
http://codeforces.com/problemset/problem/189/A
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarpus has a ribbon, its length is n. He wants to cut the ribbon in a way that fulfils the following two conditions:

  • After the cutting each ribbon piece should have length ab or c.
  • After the cutting the number of ribbon pieces should be maximum.

Help Polycarpus and find the number of ribbon pieces after the required cutting.

Input

The first line contains four space-separated integers nab and c (1 ≤ n, a, b, c ≤ 4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers ab and c can coincide.

Output

Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.

Sample test(s)
input
5 5 3 2
output
2
input
7 5 5 2
output
2
Note

In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3.

In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.


完全背包裸题。


完整代码:

/*30ms,0KB*/

#include
#include
#include
using namespace std;

int n, a[3];
int f[5010];

int main(void)
{
	int i, j;
	scanf("%d%d%d%d", &n, &a[0], &a[1], &a[2]);
	memset(f, -1, sizeof(f));
	f[0] = 0;
	for (i = 0; i < 3; i++)
	{
		int m = n - a[i];
		for (j = 0; j <= m; j++)
			if (~f[j])///小优化
				f[j + a[i]] = max(f[j + a[i]], f[j] + 1);
	}
	printf("%d", f[n]);
	return 0;
}

你可能感兴趣的:(Codeforces,acm之路--DP,背包,codeforces,c++,acm,背包,动态规划)