博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1171 Big Event in HDU (动态规划、01背包)
阅读量:5124 次
发布时间:2019-06-13

本文共 2063 字,大约阅读时间需要 6 分钟。

Big Event in HDU

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 57986    Accepted Submission(s): 19484

 

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

 

Input

 

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

210 120 1310 1 20 230 1-1

Sample Output

20 1040 40

题目大意与分析

给出一堆东西的重量和个数,要尽可能的将物品分成重量接近的两堆A和B,且A的重量不小于B

求以sum/2为容量的背包即可,求出来的值就是B sum减去B就是A

代码

#include 
using namespace std; int val[5005];int dp[255555]; int main(){ int n,i,j,a,b,l,sum; while(~scanf("%d",&n),n>0) { memset(val,0,sizeof(val)); memset(dp,0,sizeof(dp)); l = 0; sum = 0; for(i = 0;i
=val[i];j--) { dp[j] = max(dp[j],dp[j-val[i]]+val[i]); } } printf("%d %d\n",sum-dp[sum/2],dp[sum/2]); } return 0;}

 

 

转载于:https://www.cnblogs.com/dyhaohaoxuexi/p/11396939.html

你可能感兴趣的文章
【Demo 0011】多媒体播放器
查看>>
MySql DDL语言(数据库和数据表的管理)
查看>>
用示例说明BitMap索引的效率要优于B-Tree索引
查看>>
EF(Entity FrameWork)实体框架
查看>>
git基础-远程仓库的使用
查看>>
Elasticsearch及相关插件的安装
查看>>
Unknown storage engine 'InnoDB'
查看>>
Windows 环境下运用Python制作网络爬虫
查看>>
Wincc V7.3SE安装截图
查看>>
转载——开阔自己的视野,勇敢的接触新知识
查看>>
UML中的6大关系(关联、依赖、聚合、组合、泛化、实现)
查看>>
北京集训:20180310
查看>>
位运算 中度难度 子集
查看>>
tp5无刷新分页
查看>>
51单片机学习笔记之定时器程序设计
查看>>
Java——容器(泛型)
查看>>
javascript删除数组里的对象
查看>>
springcloud20---Config加入eureka
查看>>
Linux系统添加永久静态路由的方法
查看>>
简单的SQL注入学习
查看>>