POJ 1015题意

来源:互联网 发布:电脑绘制工程图纸软件 编辑:程序博客网 时间:2024/05/18 02:39

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.

 

 

在一个古老的国家,法庭上的陪审团是一些普通人组成的。审判开始前,要先挑选陪审团。方法如下--首先随机选出一些人。这些人都有两个属性--defense 和prosecution(辩护和检举,且值在0—20之间)。为了是审判尽可能的公平,法官希望选出的陪审团的defense和

prosecution值尽可能相差不大。题目给出N个人,第I人有属性值di and pi,你从中选出M个人,使的其di的和D(J)与pi的和P(J)的|D(J) - P(J)|最小,而D(J) + P(J)最大。

原创粉丝点击