mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 08:18:47 +00:00
43 lines
636 B
C++
43 lines
636 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
const int N = 2e5 + 5;
|
|
|
|
int t, n, a[N];
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
cin >> t;
|
|
|
|
while (t--) {
|
|
int ans = 2;
|
|
|
|
cin >> n;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> a[i];
|
|
}
|
|
|
|
if (n <= 2) {
|
|
cout << 1 << endl;
|
|
continue;
|
|
}
|
|
|
|
std::sort(a + 1, a + 1 + n);
|
|
|
|
for (int i = 3; i <= n; i++) {
|
|
if (a[i] != a[i - 2]) ans++;
|
|
}
|
|
|
|
cout << (ans + 1) / 2 << endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|