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

    Big Event in HDU
    Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 29411 Accepted Submission(s): 10332

    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 (0N<1000) kinds of facilities (different value, different kinds).

    Input
    Input contains multiple test cases. Each test case starts with a number N (0N <= 50 – the total number of different facilities). The next N lines contain an integer V (0V<=50 –value of facility) and an integer M (0M<=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

    Author
    lcy
    将n种物品尽可能的平分,每种物品有自己的价值和数量,多重背包,二进制优化

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <queue>
    #include <algorithm>
    #define LL long long
    using namespace std;
    
    const int MAX =  110000;
    
    int dp[200000];
    
    int w[100];
    
    int num[110];
    
    int main()
    {
        int n,sum,ans;
        while(scanf("%d",&n)&&n>=0)
        {
            sum=0;
            for(int i=1;i<=n;i++)
            {
                scanf("%d %d",&w[i],&num[i]);
                sum+=(w[i]*num[i]);
            }
            ans=sum/2;
            int ant,bit,s;
            memset(dp,0,sizeof(dp));
            for(int i=1;i<=n;i++)
            {
                ant=1;
                bit=1;
                s=0;
                while(s<num[i])
                {
                    for(int j=ans;j>=ant*w[i];j--)
                    {
                        dp[j]=max(dp[j-ant*w[i]]+ant*w[i],dp[j]);
                    }
                    s+=ant;
                    if(s+bit*2<=num[i])
                    {
                        ant=bit*2;
                    }
                    else
                    {
                        ant=num[i]-s;
                    }
                    bit*=2;
                }
            }
            printf("%d %d
    ",max(dp[ans],sum-dp[ans]),min(dp[ans],sum-dp[ans]));
        }
        return 0;
    }
    
  • 相关阅读:
    20199301 2019-2020-2 《网络攻防实践》 第九周作业
    20199301 2019-2020-2 《网络攻防实践》第八周作业
    第六课 网络安全防范技术实践验收
    20199301 2019-2020-2 《网络攻防实践》 第六周作业
    20199301 2019-2020-2 《网络攻防实践》 第五周作业
    某次发言
    FATE安装部署日志
    期末大作业
    python爬虫
    20199302 2019-2020-2 《网络攻防实践》第12周作业
  • 原文地址:https://www.cnblogs.com/juechen/p/5255987.html
Copyright © 2011-2022 走看看