AtCoder Regular Contest 068: D - Card Eater
solution
余剰カードの枚数を$b$、それ以外のカードの枚数(つまり書かれた値の種類数)を$a$とすると答えは$a - (b \bmod 2)$。 整列するから$O(N \log N)$あるいは$O(\max A_i)$。
値$A, B$が書かれたカードがそれぞれ複数枚あるとき、$A, A, B$あるいは$A, B, B$とすれば両方を$1$枚ずつ減らせる。 これは$A = B$でもよい。 よって、最後に$1$枚余るかどうかだけ考えればよい。
implementation
#include <cstdio>
#include <vector>
#include <algorithm>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
using namespace std;
int main() {
int n; scanf("%d", &n);
vector<int> a(n); repeat (i,n) scanf("%d", &a[i]);
whole(sort, a);
int n_unique = whole(unique, a) - a.begin();
int n_duplicated = n - n_unique;
int ans = n_unique - (n_duplicated % 2 == 0 ? 0 : 1);
printf("%d\n", ans);
return 0;
}