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;
    }
    
  • 相关阅读:
    简单工厂模式
    设计模式概述
    Excel中如何按单元格颜色求和,这五种牛批的方法,值得学习
    Excel数据透视表只能求和运算?快来学习求差运算小技巧
    如何在Excel中分组排名?两个公式轻松搞定!
    开始菜单之数字格式,这些基础知识还记得吗?
    2021,我来了
    2020年会必备,Excel轻松制作抽奖小游戏
    如何用Excel制作工作计划,跟踪任务进度,快来学习吧
    如何防止Excel数据录入出错,巧用数据验证,实现自动限制录入
  • 原文地址:https://www.cnblogs.com/juechen/p/5255987.html
Copyright © 2011-2022 走看看