B - Bear and Five Cards

B - Bear and Five Cards
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

A little bear Limak plays a game. He has five cards. There is one number written on each card. Each number is a positive integer.

Limak can discard (throw out) some cards. His goal is to minimize the sum of numbers written on remaining (not discarded) cards.

He is allowed to at most once discard two or three cards with the same number. Of course, he won't discard cards if it's impossible to choose two or three cards with the same number.

Given five numbers written on cards, cay you find the minimum sum of numbers on remaining cards?

Input

The only line of the input contains five integers t1t2t3t4 and t5 (1 ≤ ti ≤ 100) — numbers written on cards.

Output

Print the minimum possible sum of numbers written on remaining cards.

Sample Input

Input
7 3 7 3 20
Output
26
Input
7 9 3 1 8
Output
28
Input
10 10 10 10 10
Output
20
</pre><pre name="code" class="cpp">
</pre><pre name="code" class="cpp">#include<iostream>
using namespace std;
int main()
{
    int a[6],flag[2]={1,1},same[2]={0,0},k,i,j,sum=0;
    for(i=0;i<5;i++)
    {
        cin>>a[i];
        sum+=a[i];
    }
    for(i=0,k=0;i<5;i++)
    {
        if(flag[k]>1) k++;
        for(j=i+1;j<5;j++)
        {
            if(a[j]==a[i]&&a[i]!=0)
            {
                flag[k]++;
                same[k]=a[i];
                a[j]=0;
            }
        }
    }
    if(flag[0]>3) flag[0]=3;
    sum-=flag[0]*same[0]>flag[1]*same[1]?flag[0]*same[0]:flag[1]*same[1];
    cout<<sum<<endl;
    return 0;       
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值