-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path575.cpp
35 lines (28 loc) · 897 Bytes
/
575.cpp
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
#include <iostream>
#include <vector>
#include <unordered_set>
#include <cassert>
using namespace std;
class Solution {
public:
int distributeCandies(vector<int>& candyType) {
unordered_set<int> type(candyType.begin(), candyType.end());
int candies = candyType.size() / 2;
int types = type.size();
return min(candies, types);
}
};
int main() {
Solution solution;
vector<int> candyType1 = {1, 1, 2, 2, 3, 3};
int expected1 = 3;
assert(solution.distributeCandies(candyType1) == expected1);
vector<int> candyType2 = {1, 1, 2, 3};
int expected2 = 2;
assert(solution.distributeCandies(candyType2) == expected2);
vector<int> candyType3 = {1, 1, 1};
int expected3 = 1;
assert(solution.distributeCandies(candyType3) == expected3);
std::cout << "All test cases passed." << std::endl;
return 0;
}