博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1015 Jury Compromise(双塔dp)
阅读量:5299 次
发布时间:2019-06-14

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

Jury Compromise
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 33737   Accepted: 9109   Special Judge

Description

In Frobnia, a far-away country, the verdicts in court trials are determined by a jury consisting of members of the general public. Every time a trial is set to begin, a jury has to be selected, which is done as follows. First, several people are drawn randomly from the public. For each person in this pool, defence and prosecution assign a grade from 0 to 20 indicating their preference for this person. 0 means total dislike, 20 on the other hand means that this person is considered ideally suited for the jury. 
Based on the grades of the two parties, the judge selects the jury. In order to ensure a fair trial, the tendencies of the jury to favour either defence or prosecution should be as balanced as possible. The jury therefore has to be chosen in a way that is satisfactory to both parties. 
We will now make this more precise: given a pool of n potential jurors and two values di (the defence's value) and pi (the prosecution's value) for each potential juror i, you are to select a jury of m persons. If J is a subset of {1,..., n} with m elements, then D(J ) = sum(dk) k belong to J 
and P(J) = sum(pk) k belong to J are the total values of this jury for defence and prosecution. 
For an optimal jury J , the value |D(J) - P(J)| must be minimal. If there are several jurys with minimal |D(J) - P(J)|, one which maximizes D(J) + P(J) should be selected since the jury should be as ideal as possible for both parties. 
You are to write a program that implements this jury selection process and chooses an optimal jury given a set of candidates.

Input

The input file contains several jury selection rounds. Each round starts with a line containing two integers n and m. n is the number of candidates and m the number of jury members. 
These values will satisfy 1<=n<=200, 1<=m<=20 and of course m<=n. The following n lines contain the two integers pi and di for i = 1,...,n. A blank line separates each round from the next. 
The file ends with a round that has n = m = 0.

Output

For each round output a line containing the number of the jury selection round ('Jury #1', 'Jury #2', etc.). 
On the next line print the values D(J ) and P (J ) of your jury as shown below and on another line print the numbers of the m chosen candidates in ascending order. Output a blank before each individual candidate number. 
Output an empty line after each test case.

Sample Input

4 2 1 2 2 3 4 1 6 2 0 0

Sample Output

Jury #1 Best jury has value 6 for prosecution and value 4 for defence:  2 3

Hint

If your solution is based on an inefficient algorithm, it may not execute in the allotted time.

Source

 
题意:
从n个人中选m个人,要求sum1-sum2最小,sum1+sum2最大.
思路:
来自于:
现用dp(j, k)表示,取j 个候选人,使其辩控差为k 的所有方案中,辩控和最大的那个方案(该方案称为“方案dp(j, k)”)的辩控和。
可行方案dp(j-1, x)能演化成方案dp(j, k)的必要条件是:存在某个候选人i,i 在方案dp(j-1, x)中没有被选上,且x+V(i) = k。在所有满足该必要条件的dp(j-1, x)中,选出 dp(j-1, x) + S(i) 的值最大的那个,那么方案dp(j-1, x)再加上候选人i,就演变成了方案 dp(j, k)。
 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define fuck(x) cout<<#x<<" = "<
<
ans; for(int i=1;i<=n;i++){ scanf("%d%d",&num1[i],&num2[i]); sum[i]=num1[i]+num2[i]; diff[i]=num1[i]-num2[i]; } memset(dp,-1,sizeof(dp)); dp[0][fix]=0; for(int i=1;i<=m;i++){ for(int k=0;k<=2*fix;k++){ if(dp[i-1][k]<0){ continue;} for(int j=1;j<=n;j++){ if(dp[i][k+diff[j]]
=0||dp[m][fix+i]>=0){ minn=i;break; } } int rec=0; if(dp[m][fix-minn]>dp[m][fix+minn]){ rec=fix-minn; maxx=dp[m][fix-minn]; } else{ rec=fix+minn; maxx=dp[m][fix+minn]; } int ans1,ans2; ans1=ans2=0; while(m){ ans.push_back(path[m][rec]); ans1+=num1[path[m][rec]]; ans2+=num2[path[m][rec]]; rec-=diff[path[m][rec]]; m--; } cases++; printf("Jury #%d\n",cases); printf("Best jury has value %d for prosecution and value %d for defence:\n",ans1,ans2); sort(ans.begin(),ans.end()); int sz=ans.size(); for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/ZGQblogs/p/10646355.html

你可能感兴趣的文章
Apache Commons 工具集使用简介
查看>>
jquery validation插件
查看>>
(ubuntu ufw)My firewall is blocking network connections from the docker container to outside
查看>>
Oracle PL/SQL之LOOP循环控制语句
查看>>
复制到剪切板
查看>>
Linux多线程 - 基本操作
查看>>
写在技术博客开通一周年之际:这一年在技术上我做了什么
查看>>
javascript权威指南 第8章 笔记2
查看>>
Odoo 动态设置树形视图列表中的字段
查看>>
设计模式-抽象工厂模式
查看>>
Factory Method
查看>>
Struts 2的数据校验
查看>>
2012年度FusionCharts图表控件最受欢迎文章精选(上)
查看>>
java 高并发 订单编号递增(解决方案)
查看>>
visio二次开发初始化问题
查看>>
制作10.11MAC OS系统启动盘
查看>>
【Jquery】ajax @requestBody
查看>>
Binary Tree Zigzag Level Order Traversal 解答
查看>>
Palindrome Pairs 解答
查看>>
Ubuntu下安装requests
查看>>