• bzoj1618[Usaco2008 Nov]Buying Hay 购买干草


    Description

        约翰的干草库存已经告罄,他打算为奶牛们采购日(1≤日≤50000)磅干草.
        他知道N(1≤N≤100)个干草公司,现在用1到N给它们编号.第i个公司卖的干草包重量为Pi(1≤Pi≤5000)磅,需要的开销为Ci(l≤Ci≤5000)美元.每个干草公司的货源都十分充足,可以卖出无限多的干草包.    帮助约翰找到最小的开销来满足需要,即采购到至少H磅干草.

    Input

        第1行输入N和日,之后N行每行输入一个Pi和Ci.

    Output

     
        最小的开销.

    Sample Input

    2 15
    3 2
    5 3

    Sample Output

    9


    FJ can buy three packages from the second supplier for a total cost of 9.

    背包dp。一开始没看到是最少m个,所以白白wa了一次

    #include<cstdio>
    #include<iostream>
    #include<cstring>
    using namespace std;
    inline int read()
    {
        int x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x*=10;x+=ch-'0';ch=getchar();}
        return x*f;
    }
    int f[55001],ans=2147483647;
    int main()
    {
        memset(f,127/3,sizeof(f));
        f[0]=0;
        int n=read(),m=read();
        for (int i=1;i<=n;i++)
        {
            int c=read(),v=read();
            for (int j=c;j<=m+5000;j++)
              f[j]=min(f[j],f[j-c]+v);
        }
        for(int i=m;i<=m+5000;i++)ans=min(ans,f[i]);
        printf("%d",ans);
    }
    

      

    ——by zhber,转载请注明来源
  • 相关阅读:
    阿里巴巴Java编码规范插件安装使用指南
    jhipster安装_Windows
    Linux 基本命令
    HTTPie命令介绍
    MySQL卸载
    Windows Phone8.1系统新特性
    SQL 游标知识整理
    浅析C#代理
    javascript 实现ajax
    jquery 之load post get
  • 原文地址:https://www.cnblogs.com/zhber/p/4036117.html
Copyright © 2020-2023  润新知