Codeforces 189A

来源:互联网 发布:java中的io和nio 编辑:程序博客网 时间:2024/06/10 14:43
A. Cut Ribbon
time limit per test
1 second
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.

Examples
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.


#include <iostream>
#include <string>
#include <string.h>
#include <cmath>
#include <algorithm>
using namespace std;
#define Mod 1000000007
int f[5010];
//dp 完全背包
int main()
{
    int n,a[3];
    cin>>n;
    for(int i=0;i<3;i++)
        cin>>a[i];
    memset(f,-1,sizeof(f));
    f[0]=0;
    for(int i=0;i<3;i++){
        int m=n-a[i];
        for(int j=0;j<=m;j++){
            if(~f[j]){
                f[j+a[i]]=max(f[j+a[i]],f[j]+1);
            }
        }
    }
    cout<<f[n]<<endl;
    return 0;
}
原创粉丝点击