cf 1020 C

C. Elections
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

As you know, majority of students and teachers of Summer Informatics School live in Berland for the most part of the year. Since corruption there is quite widespread, the following story is not uncommon.

Elections are coming. You know the number of voters and the number of parties — nn and mm respectively. For each voter you know the party he is going to vote for. However, he can easily change his vote given a certain amount of money. In particular, if you give ii-th voter cici bytecoins you can ask him to vote for any other party you choose.

The United Party of Berland has decided to perform a statistical study — you need to calculate the minimum number of bytecoins the Party needs to spend to ensure its victory. In order for a party to win the elections, it needs to receive strictly more votes than any other party.

Input

The first line of input contains two integers nn and mm (1n,m30001≤n,m≤3000) — the number of voters and the number of parties respectively.

Each of the following nn lines contains two integers pipi and cici (1pim1≤pi≤m, 1ci1091≤ci≤109) — the index of this voter's preferred party and the number of bytecoins needed for him to reconsider his decision.

The United Party of Berland has the index 11.

Output

Print a single number — the minimum number of bytecoins needed for The United Party of Berland to win the elections.

Examples
input
Copy
1 2
1 100
output
Copy
0
input
Copy
5 5
2 100
3 200
4 300
5 400
5 900
output
Copy
500
input
Copy
5 5
2 100
3 200
4 300
5 800
5 900
output
Copy
600
Note

In the first sample, The United Party wins the elections even without buying extra votes.

In the second sample, The United Party can buy the votes of the first and the fourth voter. This way The Party gets two votes, while parties 33, 44 and 55 get one vote and party number 22 gets no votes.

In the third sample, The United Party can buy the votes of the first three voters and win, getting three votes against two votes of the fifth party.

 

 

复制代码
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <vector>
 4 #include <algorithm>
 5 #include <cstdlib>
 6 #include <cstring>
 7 #include <string>
 8 #include <deque>
 9 using namespace std;
10 #define ll long long 
11 #define gep(i,a,b) for(int i=a;i<=b;i++)
12 #define gepp(i,a,b) for(int i=a;i>=b;i--)    
13 #define gep1(i,a,b) for(ll i=a;i<=b;i++)
14 #define gepp1(i,a,b) for(ll i=a;i>=b;i--)
15 #define N   3009
16 #define ph  push_back
17 #define  inf 10000000000000098
18 vector<int>ve[N];
19 int n,m;
20 ll MIN;
21 ll solve(ll  x){
22     vector<int>se;
23     ll ret=0,cnt=ve[1].size();//初始值
24     gep(i,2,m){
25         int num=ve[i].size();
26         gep(j,0,num-1){
27             if(num-j>=x){//严格大
28                 ret+=ve[i][j];//必须加到party1上,因为加到别的上面,最后还是加到1上。
29                 cnt++;
30             }
31             else{
32                 se.ph(ve[i][j]);
33             }
34         }
35     }
36     if(cnt<x){
37         sort(se.begin(),se.end());
38         for(int i=0;i<se.size()&&cnt<x;i++){//在从se里找
39             ret+=se[i];
40             cnt++;
41         }    
42     }
43     //cnt最后一定是>=x的
44     return ret;
45 }
46 int main()
47 {   
48     int x;
49     ll y;
50     scanf("%d%d",&n,&m);
51     gep(i,1,n){
52         scanf("%d%lld",&x,&y);
53         ve[x].ph(y);
54     }
55     gep(i,1,m)
56     sort(ve[i].begin(),ve[i].end());
57     MIN=inf;
58     gep(i,1,n){//枚举查找,不能用二分
59         MIN=min(MIN,solve(i));
60     }
61     printf("%lld\n",MIN);
62     return 0;
63 }
复制代码

 

posted on   cltt  阅读(324)  评论(0编辑  收藏  举报

编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示