zoukankan      html  css  js  c++  java
  • HDU1171:Big Event in HDU

    http://acm.hdu.edu.cn/showproblem.php?pid=1171

    Problem Description
    Nowadays, we all know that Computer College is the biggest department in HDU. But, maybe you don't know that Computer College had ever been split into Computer College and Software College in 2002.
    The splitting is absolutely a big event in HDU! At the same time, it is a trouble thing too. All facilities must go halves. First, all facilities are assessed, and two facilities are thought to be same if they have the same value. It is assumed that there is N (0<N<1000) kinds of facilities (different value, different kinds).
     
    
    Input
    Input contains multiple test cases. Each test case starts with a number N (0 < N <= 50 -- the total number of different facilities). The next N lines contain an integer V (0<V<=50 --value of facility) and an integer M (0<M<=100 --corresponding number of the facilities) each. You can assume that all V are different.
    A test case starting with a negative integer terminates input and this test case is not to be processed.
     
    
    Output
    For each case, print one line containing two integers A and B which denote the value of Computer College and Software College will get respectively. A and B should be as equal as possible. At the same time, you should guarantee that A is not less than B.
     
    
    Sample Input
    2
    10 1
    20 1
    3
    10 1 
    20 2
    30 1
    -1
     
    
    Sample Output
    20 10
    40 40
     

    题意:给出每个物体的价值和物体的数量,如何分使得A,B所得价值最接近并且A的价值不能小于B

    思路:将总和平分后,就是一道多重背包题了

    #include <iostream>
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #define N 1000001
    using namespace std;
    int dp[101000],w1[1051],num1[1051],V,V1,n;
    void wpack(int w)
    {
        for(int i=w; i<=V; i++)
        {
            if(dp[i-w]+w>dp[i])
                dp[i]=dp[i-w]+w;
        }
    }
    void pack01(int w)
    {
        for(int i=V; i>=w; i--)
        {
            if(dp[i-w]+w>dp[i])
                dp[i]=dp[i-w]+w;
        }
    }
    void MUl(int w,int num)
    {
        if(w*num>=V)
        {
            wpack(w);
            return ;
        }
        int k=1;
        while(k<num)
        {
            pack01(w*k);
            num-=k;
            k=k*2;
        }
        pack01(num*w);
        return ;
    }
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            if(n<=0) break;
            V=0;
            for(int i=1; i<=n; i++)
            {
                scanf("%d%d",&w1[i],&num1[i]);
                V=V+w1[i]*num1[i];
            }
            V1=V;
            V=V/2;
            memset(dp,0,sizeof(dp));
            for(int i=1; i<=n; i++)
            {
                MUl(w1[i],num1[i]);
            }
            printf("%d %d
    ",V1-dp[V],dp[V]);
        }
        return 0;
    }
  • 相关阅读:
    几款免费的支持HTML5的音频视频转换软件推荐
    2 宽度优先爬虫和带偏好的爬虫(4)
    Hadoop源代码分析(三)
    Hadoop源代码分析(四)
    C# 收邮件
    关于Adobe flash palyer 安装出现的问题解决方案
    C#调用java类、jar包方法。
    EF 4.3 的一些基础使用
    .net数据库连接池问题:在同一页面使用一段时间后,提示超时,连接池不够用这类的提示!
    使用Google CDN的JSAPI服务来提供加载各类JS库的方法
  • 原文地址:https://www.cnblogs.com/zhangmingcheng/p/3940237.html
Copyright © 2011-2022 走看看