1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// lidB.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <map>
#include <set>

 ///index, count
typedef std::map<int, int> ciag;
 //pair of: count, index
typedef std::set<std::pair<int, int>> iloscWystapien;

int main()
{
	int dlCiagu;
	std::cin >> dlCiagu;
	ciag wczytanyCiag;
	iloscWystapien najwiecejWyst;
	int liczba;
	for (int i = 0; i != dlCiagu; ++i) { //load input
		std::cin >> liczba;
		++wczytanyCiag[liczba];
	}
	for (const auto& elCiagu : wczytanyCiag) {
		najwiecejWyst.insert(std::pair<int, int>(elCiagu.second, elCiagu.first) );
	}

	int minIloscCiag = 0;
	int dlPodCiagu = dlCiagu;
	int dlPodCiaguOld;
	const int WpolCiagu = (dlCiagu / 2) + 1;	// 5/2 = 3, 100/2 = 51

	for (auto rIter = najwiecejWyst.rbegin(); rIter != najwiecejWyst.rend(); ++rIter) {
		++minIloscCiag;
		dlPodCiaguOld = dlPodCiagu;
		dlPodCiagu -= rIter->first; //take out the 5x5 group
		dlPodCiagu -= (rIter->first - 1); // 5x5 can take 4 other junk with it
		//if (dlPodCiagu< WpolCiagu) {
		if (dlPodCiagu< 0 || (dlPodCiaguOld>1 && dlPodCiaguOld &1 && dlPodCiagu==0)) { //dlPodCiaguOld > 1 and not pair
			std::cout << minIloscCiag;
			return 0;
		}
		/*else if (dlPodCiagu == 0 && dlPodCiaguOld&1) {

		}*/
		//WpolCiagu -= (rIter->first - 1)/2 ; //can take some junk with it
	}


	return 0;
}