Source Code
#include<iostream>

#include<bits/stdc++.h>
typedef long long ll;
typedef long double ld;
const int mod=1e9+7;
const ll INF=1e18;
const double pi=3.14159265358979323846;

#define F first
#define S second
#define all(v) v.begin(),v.end()
#define pb push_back
#define Go ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);

using namespace std;

ll a[200010];

int main()
{
Go

int t; cin >> t;
while(t--)
{
    int n; cin >> n;
    for(int i=0;i<n;i++)cin >> a[i];
    sort(a,a+n);

    if(n==1){ cout << 1 << '\n'; continue; }
    if(a[n-1]!=a[n-2]){ cout << n << '\n'; continue; }

    if(n>=3&&a[n-1]==a[n-2]&&a[n-1]==a[n-3]){ cout << -1 << '\n'; continue; }

    if(n%2!=0)n++;
    cout << n/2 << '\n';
}

return 0;
}
Copy
Proud Competitors yumna08
GNU G++17
15 ms
320 KB
Wrong Answer