CodeForces - 1020C

博客借鉴:https://blog.csdn.net/u011815404/article/details/81668453

Description

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 i-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 n and m (1≤n,m≤3000) — the number of voters and the number of parties respectively.

Each of the following n lines contains two integers pipi and cici (1≤pi≤m, 1≤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 1.

Output

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

Examples

Input

1 2
1 100

Output

0

Input

5 5
2 100
3 200
4 300
5 400
5 900

Output

500

Input

5 5
2 100
3 200
4 300
5 800
5 900

Output

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 3, 4 and 5 get one vote and party number 2 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.

题意:n 个人投票,每个人都有一个选好的序号,若想让其换序号就必须支付他所给的价格,先想让1号的票最多,求最少支付的钱数

思路:纯考虑贪心的话,情况太多,因此可以只考虑1号的获胜的状态,是以几票来获取胜利的,然后枚举所有获胜情况,取最优的即可

This is the code

#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<iostream>
#include<iomanip>
#include<list>
#include<queue>
#include<sstream>
#include<stack>
#include<string>
#include<set>
#include<vector>
using namespace std;
#define PI acos(-1.0)
#define EPS 1e-8
#define MOD 1e9+7
#define LL long long
#define ULL unsigned long long     //1844674407370955161
#define INT_INF 0x7f7f7f7f      //2139062143
#define LL_INF 0x7f7f7f7f7f7f7f7f //9187201950435737471
const int dr[]={0, 0, -1, 1, -1, -1, 1, 1};
const int dc[]={-1, 1, 0, 0, -1, 1, -1, 1};
// ios::sync_with_stdio(false);
// 那么cin, 就不能跟C的 scanf,sscanf, getchar, fgets之类的一起使用了
#define N 3005
struct Node
{
    int num;
    int value;
}a[N];
int bucket[N];
int ticket[N];
int cmp(Node x,Node y)
{
    return x.value<y.value;
}
int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++)
    {
        scanf("%d%d",&a[i].num,&a[i].value);
        bucket[a[i].num]++;//最开始的投票情况
    }
    sort(a+1,a+n+1,cmp);//按照价格排序
    long long minn=LL_INF,sum=0,ans;
    for(int i=bucket[1];i<=n;i++)//枚举获胜状态
    {
        sum=0;
        ans=0;
        for(int j=2;j<=m;j++)
        {
            if(bucket[j]>=i)
            {
                ticket[j]=bucket[j]-i+1;//要赢此选手需要在其处买的票数
                sum+=ticket[j];//记录要买的总票
            }
            else ticket[j]=0;
        }
        if(i-bucket[1]<sum)//如果我在比他高的选手这买的票比我总共买的还多说明情况不存在
            continue;
        sum=i-bucket[1]-sum; //记录要在比1号低的选手买的票数
        for(int j=1;j<=n;j++)
        {
            if(ticket[a[j].num]!=0)//比1号高
            {
                ticket[a[j].num]--;
                ans+=a[j].value;
            }
            else
            {
                if(sum!=0&&a[j].num!=1)//低且需要买票
                {
                    sum--;
                    ans+=a[j].value;
                }
            }
        }
        minn=min(minn,ans);//取最优
    }
    printf("%lld\n",minn);
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值