CodeForces 204B - Little Elephant and Cards

B. Little Elephant and Cards
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Little Elephant loves to play with color cards.

He has n cards, each has exactly two colors (the color of the front side and the color of the back side). Initially, all the cards lay on the table with the front side up. In one move the Little Elephant can turn any card to the other side. The Little Elephant thinks that a set of cards on the table is funny if at least half of the cards have the same color (for each card the color of the upper side is considered).

Help the Little Elephant to find the minimum number of moves needed to make the set ofn cards funny.

Input

The first line contains a single integer n(1 ≤ n ≤ 105) — the number of the cards. The followingn lines contain the description of all cards, one card per line. The cards are described by a pair of positive integers not exceeding109 — colors of both sides. The first number in a line is the color of the front of the card, the second one — of the back. The color of the front of the card may coincide with the color of the back of the card.

The numbers in the lines are separated by single spaces.

Output

On a single line print a single integer — the sought minimum number of moves. If it is impossible to make the set funny, print -1.

Sample test(s)
Input
3
4 7
4 7
7 4
Output
0
Input
5
4 7
7 4
2 11
9 7
1 1
Output
2
Note

In the first sample there initially are three cards lying with colors 4, 4, 7. Since two of the three cards are of the same color 4, you do not need to change anything, so the answer is 0.

In the second sample, you can turn the first and the fourth cards. After that three of the five cards will be of color7.



=============================

给你一摞牌,两面有数字,问至少要翻转多少张牌可以使正面具有至少一半相同的数字


分别记录下正面和背面每个数出现的次数,算出是否符合条件即可。注意正面和背面可以相等,这时就不算背面,因为只需要保持它正面在上就行了


#include <iostream>
#include <map>
#include <cstdio>

using namespace std;
map<int,int>mp1,mp2;
int a[111111],b[111111];
int n;
int MIN=1e9;

int main()
{
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        scanf("%d%d",&a[i],&b[i]);
        if(a[i]==b[i])
        {
            mp1[a[i]]++;
        }
        else
        {
            mp1[a[i]]++;
            mp2[b[i]]++;
        }
    }
    map<int,int>::iterator it;
    for(it=mp1.begin();it!=mp1.end();it++)
    {
        int t=it->first;
        if(mp1[t]>=(n+1)/2)
        {
            printf("0\n");
            return 0;
        }
        if(mp1[t]+mp2[t]<(n+1)/2)
            continue;
        else
        {
            int temp=(n+1)/2-mp1[t];
            MIN=min(temp,MIN);
        }
    }
    for(it=mp2.begin();it!=mp2.end();it++)
    {
        int t=it->first;
        if(mp2[t]>=(n+1)/2)
        {
            MIN=min((n+1)/2,MIN);
            break;
        }
    }
    if(MIN!=1e9) printf("%d\n",MIN);
    else printf("-1\n");
    return 0;
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值