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;
    }
    
  • 相关阅读:
    ORACLE安装(12c-Redhat6.5)
    Exchange Pause or stop transport service
    Exchange Port
    Oracle的启动与关闭
    Exchange OAB(Offline Address Book)
    Exchange NLB 单播和多播模式比较
    Exchange Database Status(Copy Status ,Content Index State,QueueLength,Move Status...)
    发送邮件的三种方式:Send Mail Message
    Exchange Powershell:Get-Counter (List connections to OWA )
    Exchange Management Console Error
  • 原文地址:https://www.cnblogs.com/juechen/p/5255987.html
Copyright © 2011-2022 走看看