当前位置: 首页 > 工具软件 > horseshoe > 使用案例 >

CodeForces-228A-Is your horseshoe on the other hoof?(set方便好理解)

归俊
2023-12-01

A. Is your horseshoe on the other hoof?

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard 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
链接:https://codeforces.ml/problemset/problem/228/A
题意:给你4个数字,需要四个数字要均不相同
思路:根据set中没有重复的元素 可以用4-s.size()来解决
ac代码如下:

#include<iostream>
#include<set>
using namespace std;
int main(){
	set<int> s;
	int a=4;
	int c;
	while(a--){
		cin>>c;
		if(s.find(c)==s.end()){
			s.insert(c);
		}
	}
	cout<<4-s.size()<<endl;
}
 类似资料: