博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ_ACM_Big Event in HDU
阅读量:6307 次
发布时间:2019-06-22

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

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
 
Code
View Code
1 #include 
2 #include
3 #define N 50 * 50 * 100 4 int value[(N + 5) / 2]; 5 int f[(N + 5) / 2]; 6 int main() 7 { 8 int i, j, n, v, vn, sum, count; 9 while (scanf("%d", &n) != EOF && n >= 0)10 {11 //input and get the count and sum12 count = 1;13 sum = 0;14 while (n--)15 {16 scanf("%d %d", &v, &vn);17 sum += v * vn;18 for (i = count; i < count + vn; i++)19 value[i] = v;20 count += vn;21 }22 //initialize23 memset(f, 0, sizeof(f));24 //handle25 count--;26 for (i = 1; i <= count; i++)27 {28 for (j = sum / 2; j >= value[i]; j--)29 {30 if (f[j] < f[j - value[i]] + value[i])31 f[j] = f[j - value[i]] + value[i];32 }33 if (f[j] == sum / 2)34 f[sum / 2] = f[j];35 }36 //print37 printf("%d %d\n", sum - f[sum / 2], f[sum / 2]);38 }39 return 0;40 }

Key points

Firstly, this is the question about multipe knapsack, but you can translate it to a knapsack question.

Secondly, draw attention to the details, likes sum / 2 is interger.

 

转载于:https://www.cnblogs.com/chuanlong/archive/2012/11/22/2782179.html

你可能感兴趣的文章
无刷新假象 实现简易文件上传
查看>>
U盘插入电脑就启动不了
查看>>
机柜上配线架的使用方法
查看>>
zabbix之web性能监控
查看>>
more 命令详解
查看>>
【This is 广告】百度直达号——@ 加 关键字
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
install Windows 7 or Windows Server 2008 R2 using a USB Key
查看>>
JAVA中方法的参数传递(转)
查看>>
Loudrunner编写WinSocket接口测试脚本
查看>>
一个小型数据库的核心组件
查看>>
常见消息队列介绍以及比较总结
查看>>
在U盘上安装Linux系统解决方案
查看>>
×××之GRE的典型配置案例
查看>>
HK 打造×××服务器
查看>>
最近做的一些事情
查看>>
CentOS6 /etc/profile ~/.bash_profile ~/.bashrc等文件的执行顺序
查看>>
SVN服务器端、客户端安装以及集成到eclipse的详细步骤(转)
查看>>