0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-09 16:58:48 +00:00

C - LIS or Reverse LIS?

https://codeforces.com/contest/1682/submission/158040482
This commit is contained in:
Baoshuo Ren 2022-05-22 23:20:13 +08:00
parent b7f96f7879
commit d713607fae
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

42
Codeforces/1682/C/C.cpp Normal file
View File

@ -0,0 +1,42 @@
#include <algorithm>
#include <cmath>
#include <iostream>
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;
}