• POJ1742 Coins[多重背包可行性]


     

    Coins
    Time Limit: 3000MS   Memory Limit: 30000K
    Total Submissions: 34814   Accepted: 11828

    Description

    People in Silverland use coins.They have coins of value A1,A2,A3...An Silverland dollar.One day Tony opened his money-box and found there were some coins.He decided to buy a very nice watch in a nearby shop. He wanted to pay the exact price(without change) and he known the price would not more than m.But he didn't know the exact price of the watch. 
    You are to write a program which reads n,m,A1,A2,A3...An and C1,C2,C3...Cn corresponding to the number of Tony's coins of value A1,A2,A3...An then calculate how many prices(form 1 to m) Tony can pay use these coins. 

    Input

    The input contains several test cases. The first line of each test case contains two integers n(1<=n<=100),m(m<=100000).The second line contains 2n integers, denoting A1,A2,A3...An,C1,C2,C3...Cn (1<=Ai<=100000,1<=Ci<=1000). The last test case is followed by two zeros.

    Output

    For each test case output the answer on a single line.

    Sample Input

    3 10
    1 2 4 2 1 1
    2 5
    1 4 2 1
    0 0
    

    Sample Output

    8
    4
    

    Source

    ---------------------------
    Orz楼爷
    多重背包可行性,用O(NV)做法
    滚动数组掉N那一维,否则MLE
    #include<iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    const int N=105,V=1e5+5;
    int n,m,f[V],c[N],v[N],ans=0;
    
    void mpAble(){
        memset(f,-1,sizeof(f));
        f[0]=0;
        for(int i=1;i<=n;i++){
            for(int j=0;j<=m;j++){
                if(f[j]>=0) f[j]=c[i];
                else f[j]=-1;
            }
            for(int j=0;j<=m-v[i];j++)
                if(f[j]>=0)
                    f[j+v[i]]=max(f[j+v[i]],f[j]-1);
        }
    }
    int main(int argc, const char * argv[]) {
        while(cin>>n>>m){
            if(n==0&&m==0) break;
            for(int i=1;i<=n;i++) scanf("%d",&v[i]);
            for(int i=1;i<=n;i++) scanf("%d",&c[i]);
            mpAble();
            for(int i=m;i>=1;i--)if(f[i]>=0) ans++;
            cout<<ans<<"
    ";ans=0;
            
        }
        return 0;
    }
  • 相关阅读:
    mysql基础操作
    网页粒子背景
    将Myeclipse项目改成Eclipse项目
    mybatis入门配置和调试
    《增删改查返回问题》
    AES加密与解密(秘钥)
    svn下载代码cleanup失败解决办法
    maven中net.sf.json报错
    idea提交SVN时忽略某些文件或文件夹
    《面试常问到的知识点》
  • 原文地址:https://www.cnblogs.com/candy99/p/5797497.html
Copyright © 2020-2023  润新知