【链接】 我是链接,点我呀:)

【题意】

每个人都有自己喜欢的队员
但是如果贿赂他们可以让他们更改自己喜欢的队员
问你最少要花多少钱贿赂队员才能让1号队员严格有最多的人喜欢?

【题解】

除了1号之外,其他队员最后喜欢的人数不太好确定。
我们可以这样,用up枚举其他人最后喜欢的人数的上限(即除了1之外所有人都不能超过up)
如果某个人的被喜欢人数超过了,则把所有喜欢这个人当中需要贿赂用的钱数最低的几个贿赂了.让他低于up
然后我们再在这种情况下,让1号队员成为最被喜欢的人(选择之前没被贿赂的且原本不是选择1的人贿赂它,直到1号队员被喜欢人数大于所有人
这样就能覆盖所有的情况了。
取所有情况下的最小值即可。

【代码】

import java.io.*;
import java.util.*; public class Main { static InputReader in;
static PrintWriter out; public static void main(String[] args) throws IOException{
//InputStream ins = new FileInputStream("E:\\rush.txt");
InputStream ins = System.in;
in = new InputReader(ins);
out = new PrintWriter(System.out);
//code start from here
new Task().solve(in, out);
out.close();
} static int N = 3000;
static class Task{ int n,m,id;
int p[],c[]; static class Person implements Comparable<Person>{
int prefer,cost,id;
Person(int prefer,int cost,int id) {
this.prefer = prefer;
this.cost = cost;
this.id = id;
}
@Override
public int compareTo(Person o) {
// TODO Auto-generated method stub
return this.cost-o.cost;
} }
Person persons[];
ArrayList voters[];
boolean flag[]; public void solve(InputReader in,PrintWriter out) {
flag = new boolean[N+10];
persons = new Person[N+10];
voters = new ArrayList[N+10];
p = new int[N+10];c = new int[N+10];
n = in.nextInt();m = in.nextInt();
for (int i = 1;i <= n;i++) {
int pp,cc;
pp = in.nextInt();cc = in.nextInt();
p[i] = pp;c[i] = cc;
persons[i] = new Person(pp,cc,i);
}
Arrays.sort(persons, 1,n+1);
for (int i = 1;i <= m;i++) voters[i] = new ArrayList();
for (int i = 1;i <= n;i++) {
voters[persons[i].prefer].add(persons[i].id);
}
long ans = -1;
for (int up = 1;up <= n;up++) {
for (int j = 1;j <= n;j++) flag[j] = false;
long temp = 0;
int cnt = voters[1].size(),ma = 0;
for (int j = 2;j <= m;j++) {
int len = voters[j].size();
//out.println("voters["+j+"].size="+len);
if (len>=up) {
for (int k = 0;k <= len-up;k++) {
flag[(int)voters[j].get(k)] = true;
temp = temp + c[(int)voters[j].get(k)];
cnt++;
}
ma = Math.max(ma, up-1);
}else {
ma = Math.max(ma, len);
}
}
if (cnt<=ma)
for (int j = 1;j <= n;j++)
if (flag[persons[j].id]==false && persons[j].prefer!=1) {
if (cnt<=ma) {
cnt++;
flag[persons[j].id] = true;
temp = temp + persons[j].cost;
}else break;
}
if (cnt>ma) {
if (ans==-1) {
ans = temp;
}else {
ans = Math.min(ans, temp);
}
}
}
out.println(ans);
}
} static class InputReader{
public BufferedReader br;
public StringTokenizer tokenizer; public InputReader(InputStream ins) {
br = new BufferedReader(new InputStreamReader(ins));
tokenizer = null;
} public String next(){
while (tokenizer==null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(br.readLine());
}catch(IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
} public int nextInt() {
return Integer.parseInt(next());
}
}
}

【Codeforces 1019A】Elections的更多相关文章

  1. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  2. 【codeforces 707E】Garlands

    [题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...

  3. 【codeforces 707C】Pythagorean Triples

    [题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...

  4. 【codeforces 709D】Recover the String

    [题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...

  5. 【codeforces 709B】Checkpoints

    [题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...

  6. 【codeforces 709C】Letters Cyclic Shift

    [题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...

  7. 【Codeforces 429D】 Tricky Function

    [题目链接] http://codeforces.com/problemset/problem/429/D [算法] 令Si = A1 + A2 + ... + Ai(A的前缀和) 则g(i,j) = ...

  8. 【Codeforces 670C】 Cinema

    [题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...

  9. 【codeforces 515D】Drazil and Tiles

    [题目链接]:http://codeforces.com/contest/515/problem/D [题意] 给你一个n*m的格子; 然后让你用1*2的长方形去填格子的空缺; 如果有填满的方案且方案 ...

随机推荐

  1. git 删除本地仓库

    更新: 2017/06/27 修改格式,备注mac下的命令没测试过   windows: rm .git/ mac: sudo rm -rf .git/ 没验证

  2. 给独立搭建的博客启用https的过程

    申请SSL证书 我自己独立搭建的博客部署在阿里云服务器上,因此我就先搜索阿里云启用https的方法,网上有比较详细的讲解,在此提供一个参考网址: https://blog.csdn.net/csluc ...

  3. 51nod 1029 大数除法

    1029 大数除法 基准时间限制:4 秒 空间限制:131072 KB 分值: 160 难度:6级算法题  收藏  关注 给出2个大整数A,B,计算A / B和A Mod B的结果. Input 第1 ...

  4. 递推DP UVA 1366 Martian Mining

    题目传送门 /* 题意:抽象一点就是给两个矩阵,重叠的(就是两者选择其一),两种铺路:从右到左和从下到上,中途不能转弯, 到达边界后把沿途路上的权值相加求和使最大 DP:这是道递推题,首先我题目看了老 ...

  5. 题解报告:hdu 5695 Gym Class(拓扑排序)

    题目链接:acm.hdu.edu.cn/showproblem.php?pid=5695 Problem Description 众所周知,度度熊喜欢各类体育活动.今天,它终于当上了梦寐以求的体育课老 ...

  6. 总结MySQL中SQL语法的使用

    --where子句操作符: where子句操作符 = 等于 <> 不等于(标准语法) != 不等于(非标准语法,可移植性差) < 小于 <= 小于等于 > 大于 > ...

  7. 浅谈.net remoting 与 webservice

    1. .NET Remoting .NET Remoting是微软随.NET推出的一种分布式应用解决方案,被誉为管理应用程序域之间的 RPC 的首选技,它允许不同应用程序域之间进行通信(这里的通信可以 ...

  8. 3星|《OKR:源于英特热和谷歌的目标管理利器》:OKR原理、实施手册、实施过的公司的访谈

    OKR原理与实施手册,另外附了几家实施过OKR的公司的访谈. 书中表述的OKR思想,我认为是这两点: 1:始终聚焦在最重要的目标上: 2:不以OKR为考核员工的指标: Kindle电子版排版有小缺陷, ...

  9. 基于 CentOS 搭建Seafile个人网盘

    一.安装 Seafile 安装依赖环境使用 yum 安装 Python 及 MySQL: yum install python python-setuptools python-imaging pyt ...

  10. Vue核心知识-computed和watch的使用场景和方法

    https://www.jianshu.com/p/bb7a2244c7ca