codeforces——228A —— Is your horseshoe on the other hoof?

来源:互联网 发布:飞利浦shp8000 知乎 编辑:程序博客网 时间:2024/06/04 22:47
A. Is your horseshoe on the other hoof?
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Valera the Horse is going to the party with friends. He has been following the fashion trends for a while, and he knows that it is very popular to wear all horseshoes of different color. Valera has got four horseshoes left from the last year, but maybe some of them have the same color. In this case he needs to go to the store and buy some few more horseshoes, not to lose face in front of his stylish comrades.

Fortunately, the store sells horseshoes of all colors under the sun and Valera has enough money to buy any four of them. However, in order to save the money, he would like to spend as little money as possible, so you need to help Valera and determine what is the minimum number of horseshoes he needs to buy to wear four horseshoes of different colors to a party.

Input

The first line contains four space-separated integers s1, s2, s3, s4(1 ≤ s1, s2, s3, s4 ≤ 109) — the colors of horseshoes Valera has.

Consider all possible colors indexed with integers.

Output

Print a single integer — the minimum number of horseshoes Valera needs to buy.

Examples
Input
1 7 3 3
Output
1
Input
7 7 7 7
Output
3我觉得没办法再水了。。统计四个数中不同的个数,用4减所得数
#include<stdio.h>#include<iostream>#include<cstring>#include<cmath>#include<algorithm>#include<map>using namespace std;int main(){    int a[4];    while(~scanf("%d%d%d%d",&a[0],&a[1],&a[2],&a[3]))    {        sort(a,a+4);        int ans=1;        for(int i=1; i<=3; i++)            if(a[i]!=a[i-1])                ans++;        cout<<4-ans<<endl;    }    return 0;}



阅读全文
0 0
原创粉丝点击