zoukankan      html  css  js  c++  java
  • uva 562 Dividing coins(01背包)

      Dividing coins 

    It's commonly known that the Dutch have invented copper-wire. Two Dutch men were fighting over a nickel, which was made of copper. They were both so eager to get it and the fighting was so fierce, they stretched the coin to great length and thus created copper-wire.


    Not commonly known is that the fighting started, after the two Dutch tried to divide a bag with coins between the two of them. The contents of the bag appeared not to be equally divisible. The Dutch of the past couldn't stand the fact that a division should favour one of them and they always wanted a fair share to the very last cent. Nowadays fighting over a single cent will not be seen anymore, but being capable of making an equal division as fair as possible is something that will remain important forever...


    That's what this whole problem is about. Not everyone is capable of seeing instantly what's the most fair division of a bag of coins between two persons. Your help is asked to solve this problem.


    Given a bag with a maximum of 100 coins, determine the most fair division between two persons. This means that the difference between the amount each person obtains should be minimised. The value of a coin varies from 1 cent to 500 cents. It's not allowed to split a single coin.

    Input 

    A line with the number of problems n, followed by n times:

    • a line with a non negative integer m ($m le 100$) indicating the number of coins in the bag
    • a line with m numbers separated by one space, each number indicates the value of a coin.

    Output 

    The output consists of n lines. Each line contains the minimal positive difference between the amount the two persons obtain when they divide the coins from the corresponding bag.

    Sample Input 

    2
    3
    2 3 5
    4
    1 2 4 6
    

    Sample Output 

    0
    1


    很简单的01背包问题,将n个硬币的总价值累加得到sum,再用sum/2作为背包容量对n个硬币做01背包处理,看能组成的最大容量是多少。

    题意:第一个数代表有多少组数据,第二行的数代表有几个硬币,第三行数分别代表每个硬币的价值。将这些硬币分成两堆,尽可能地平衡,求最小价值差为多少。


    附上代码:
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 using namespace std;
     5 int abs(int a)
     6 {
     7     if(a>0) return a;
     8     return -a;
     9 }
    10 int main()
    11 {
    12     int n,m,i,j;
    13     int a[1005],dp[100005];
    14     scanf("%d",&n);
    15     while(n--)
    16     {
    17         int sum=0,s;
    18         scanf("%d",&m);
    19         for(i=0; i<m; i++)
    20         {
    21             scanf("%d",&a[i]);
    22             sum+=a[i];
    23         }
    24         s=sum/2;     //求平均值作为背包容量,求能组成的最大背包容量
    25         memset(dp,0,sizeof(dp));
    26         for(i=0; i<m; i++)
    27             for(j=s; j>=a[i]; j--)
    28                 if(dp[j]<dp[j-a[i]]+a[i])
    29                     dp[j]=dp[j-a[i]]+a[i];
    30         printf("%d
    ",abs(sum-dp[s]-dp[s])); //dp[s]为最接近平均值的容量,减去两个它的绝对值,则为最小价值差
    31     }
    32     return 0;
    33 }
  • 相关阅读:
    前端接口设计
    前端协作流程
    编写jQuery插件
    jQuery插件之validation插件
    深入理解ajax系列第九篇——jQuery中的ajax
    前端学PHP之Smarty模板引擎
    第3选择-解决所有难题的关键思维,种下好的种子避免落入钻石交易
    阿里BCG重磅报告《人工智能,未来致胜之道》
    关于web开发前端h5框架的选择
    html5+php实现文件的断点续传ajax异步上传
  • 原文地址:https://www.cnblogs.com/pshw/p/5023919.html
Copyright © 2011-2022 走看看