zoukankan      html  css  js  c++  java
  • Dividing--hdu1059(动态规划)

    Problem Description
    Marsha and Bill own a collection of marbles. They want to split the collection among themselves so that both receive an equal share of the marbles. This would be easy if all the marbles had the same value, because then they could just split the collection in half. But unfortunately, some of the marbles are larger, or more beautiful than others. So, Marsha and Bill start by assigning a value, a natural number between one and six, to each marble. Now they want to divide the marbles so that each of them gets the same total value. 
    Unfortunately, they realize that it might be impossible to divide the marbles in this way (even if the total value of all marbles is even). For example, if there are one marble of value 1, one of value 3 and two of value 4, then they cannot be split into sets of equal value. So, they ask you to write a program that checks whether there is a fair partition of the marbles.
     
    Input
    Each line in the input describes one collection of marbles to be divided. The lines consist of six non-negative integers n1, n2, ..., n6, where ni is the number of marbles of value i. So, the example from above would be described by the input-line ``1 0 1 2 0 0''. The maximum total number of marbles will be 20000. 

    The last line of the input file will be ``0 0 0 0 0 0''; do not process this line.
     
    Output
    For each colletcion, output ``Collection #k:'', where k is the number of the test case, and then either ``Can be divided.'' or ``Can't be divided.''. 

    Output a blank line after each test case.
     
    Sample Input
    1 0 1 2 0 0
    1 0 0 0 1 1
    0 0 0 0 0 0
     
    Sample Output
    Collection #1:
    Can't be divided.
     
     
    Collection #2:
    Can be divided.
     
    本来我以为是背包  但是超时了   然后搜了题解   发现是动态规划   
    好像背包也可以写 但是要用一个新算法    啊啊啊   东西好多   怎么办   学都学不完
     
    好吧   先说这一道题
    有6快大理石   每一块的价值是1 2 3 4 5 6   给你的六个数是每一个大理石的块数
     深搜搜一下就行了   上代码   一看就明白
    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #include<iostream>
    #include<math.h>
    #include<stdlib.h>
    
    using namespace std;
    
    #define INF 0xfffffff
    #define N 20
    int flag,mid,a[N];
    
    void Find(int ans,int s)
    {
        if(flag)
            return;
        if(ans==mid)
        {
            flag=1;
            return;
        }
        for(int i=s; i>=1; i--)
        {
            if(a[i])
            {
                if(ans+i<=mid)
                {
                    a[i]--;
                    Find(ans+i,i);
                    if(flag)
                        break;
                }
            }
        }
        return;
    }
    
    int main()
    {
        int t=1;
        while(1)
        {
            int sum=0;
            for(int i=1; i<=6; i++)
            {
                scanf("%d",&a[i]);
                sum+=a[i]*i;
            }
            if(sum==0)
                break;
            printf("Collection #%d:
    ",t++);
            if(sum%2==1)
            {
                printf("Can't be divided.
    
    ");
                continue;
            }
            flag=0;
            mid=sum/2;
            Find(0,6);
            if(flag==1)
                printf("Can be divided.
    
    ");
            else
                printf("Can't be divided.
    
    ");
        }
        return 0;
    }
  • 相关阅读:
    hdu 3555 Bomb 【数位DP】
    ibatis动态的传入表名、字段名
    ibatis把表名作为一个参数报错问题的解决方案
    事务——原子性、一致性、隔离性和持久性的理解
    struts2 集成webservice 的方法
    MySQL FEDERATED引擎使用示例, 类似Oracle DBLINK
    Javascript禁止网页复制粘贴效果,或者复制时自动添加来源信息
    asp.net关于Cookie跨域(域名)的问题
    Java cookie的使用
    关于Cookie跨域操作的一些总结
  • 原文地址:https://www.cnblogs.com/linliu/p/5138509.html
Copyright © 2011-2022 走看看