301540: CF291A. Spyke Talks

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Spyke Talks

题意翻译

计算在输入数列中除了 $0$ 以外出现 $2$ 次且仅出现 $2$ 次的数的个数。如果有数出现了 $3$ 次或以上,请输出 $-1$。

题目描述

Polycarpus is the director of a large corporation. There are $ n $ secretaries working for the corporation, each of them corresponds via the famous Spyke VoIP system during the day. We know that when two people call each other via Spyke, the Spyke network assigns a unique ID to this call, a positive integer session number. One day Polycarpus wondered which secretaries are talking via the Spyke and which are not. For each secretary, he wrote out either the session number of his call or a 0 if this secretary wasn't talking via Spyke at that moment. Help Polycarpus analyze these data and find out the number of pairs of secretaries that are talking. If Polycarpus has made a mistake in the data and the described situation could not have taken place, say so. Note that the secretaries can correspond via Spyke not only with each other, but also with the people from other places. Also, Spyke conferences aren't permitted — that is, one call connects exactly two people.

输入输出格式

输入格式


The first line contains integer $ n $ $ (1<=n<=10^{3}) $ — the number of secretaries in Polycarpus's corporation. The next line contains $ n $ space-separated integers: $ id_{1},id_{2},...,id_{n} $ $ (0<=id_{i}<=10^{9}) $ . Number $ id_{i} $ equals the number of the call session of the $ i $ -th secretary, if the secretary is talking via Spyke, or zero otherwise. Consider the secretaries indexed from 1 to $ n $ in some way.

输出格式


Print a single integer — the number of pairs of chatting secretaries, or -1 if Polycarpus's got a mistake in his records and the described situation could not have taken place.

输入输出样例

输入样例 #1

6
0 1 7 1 7 10

输出样例 #1

2

输入样例 #2

3
1 1 1

输出样例 #2

-1

输入样例 #3

1
0

输出样例 #3

0

说明

In the first test sample there are two Spyke calls between secretaries: secretary 2 and secretary 4, secretary 3 and secretary 5. In the second test sample the described situation is impossible as conferences aren't allowed.

Input

题意翻译

计算在输入数列中除了 $0$ 以外出现 $2$ 次且仅出现 $2$ 次的数的个数。如果有数出现了 $3$ 次或以上,请输出 $-1$。

加入题单

算法标签: