680A - Bear and Five Cards

  1. 680A - Bear and Five Cards


A. Bear and Five Cards
 

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 t 1t 2t 3t 4 and t 5 (1 ≤ t i ≤ 100) — numbers written on cards.

Output

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

Examples
input
Copy
7 3 7 3 20
output
Copy
26
input
Copy
7 9 3 1 8
output
Copy
28
input
Copy
10 10 10 10 10
output
Copy
20
Note

In the first sample, Limak has cards with numbers 7373 and 20. Limak can do one of the following.

  • Do nothing and the sum would be 7 + 3 + 7 + 3 + 20 = 40.
  • Remove two cards with a number 7. The remaining sum would be 3 + 3 + 20 = 26.
  • Remove two cards with a number 3. The remaining sum would be 7 + 7 + 20 = 34.

You are asked to minimize the sum so the answer is 26.

In the second sample, it's impossible to find two or three cards with the same number. Hence, Limak does nothing and the sum is 7 + 9 + 1 + 3 + 8 = 28.

In the third sample, all cards have the same number. It's optimal to discard any three cards. The sum of two remaining numbers is 10 + 10 = 20.


  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. int a[5],sum=0,x=0,y=0;
  5. int b[100000]={0};
  6. for(int i=0;i<5;i++)
  7. {cin>>a[i];
  8. b[a[i]]++;
  9. if( b[a[i]]==2) x=max(x,a[i]);
  10. else if( b[a[i]]==3) y=a[i];
  11.  
  12. sum = sum +a[i];}
  13.  
  14.  
  15. cout<<sum-max(2*x,3*y);
  16.  
  17. return 0; }

Comments

Popular posts from this blog

Codeforce Problem 1703A. YES or YES?

Aptitude test assistant programmer 2018

1041A. Heist solution