fork download
  1. #include <bits/stdc++.h>
  2. #include <chrono>
  3. using namespace std;
  4. using namespace chrono;
  5. // "AJEET JAIN"----"JAI JINENDRA"
  6. /* "णमो अरिहंताणं",
  7.   "णमो सिद्धाणं",
  8.   "णमो आयरियाणं",
  9.   "णमो उवज्झायाणं",
  10.   "णमो लोए सव्वसाहूणं",
  11.   "",
  12.   "एसो पंच नमोक्कारो, सव्व पावप्पणासणो",
  13.   "मंगलाणं च सव्वेसिं, पडमं हवै मंगलं", */
  14.  
  15.  
  16. // Aliases to op
  17. using ll = long long;
  18. using ull = unsigned long long;
  19. using ld = double;
  20. using vll = vector<ll>;
  21.  
  22.  
  23. // Constants
  24. constexpr ll INF = 4e18;
  25. constexpr ld EPS = 1e-9;
  26. constexpr ll MOD = 1e9 + 7;
  27.  
  28.  
  29.  
  30. // Macros
  31. #define F first
  32. #define S second
  33. #define all(x) begin(x), end(x)
  34. #define allr(x) rbegin(x), rend(x)
  35. #define py cout<<"YES\n";
  36. #define pn cout<<"NO\n";
  37. #define forn(i,n) for(int i=0;i<n;i++)
  38. #define for1(i,n) for(int i=1;i<=n;i++)
  39.  
  40. // #define insert push_back
  41. #define pb push_back
  42. #define MP make_pair
  43. #define endl '\n'
  44.  
  45.  
  46.  
  47. /*
  48.  
  49.   Golden Rule
  50.  
  51.   1) problem is easy
  52.   2) proofs is easy
  53.   3) implementation is easy
  54.  
  55.   /*
  56.   ROUGH --
  57.  
  58.   */
  59.  
  60. void AJNJ(){
  61. ll n;
  62. cin >> n;
  63. vector<ll> v(n);
  64. map<ll , ll> mp;
  65. forn(i , n){
  66. cin >> v[i];
  67. mp[v[i]]++;
  68. }
  69.  
  70. for(auto x : mp){
  71. if(x.S == 1){
  72. cout << "-1" << endl;
  73. return;
  74. }
  75. }
  76. ll ans = 0;
  77.  
  78. for(auto x : mp){
  79. if((x.S) % 3 == 0){
  80. ans += (x.S)/3;
  81. }
  82. else if(((x.S) % 3)%2 == 0){
  83. ans += (x.S)/3 + 1;
  84. }
  85. else{
  86. ans += (x.S)/2;
  87. }
  88. }
  89.  
  90. cout << ans << endl;
  91.  
  92.  
  93. }
  94.  
  95.  
  96. int main(){
  97. ios::sync_with_stdio(0);
  98. cin.tie(0);
  99. cout.tie(0);
  100. int T = 1;
  101. cin>>T;
  102. auto start1 = high_resolution_clock::now();
  103. while(T--){
  104. AJNJ();
  105. }
  106. auto stop1 = high_resolution_clock::now();
  107. auto duration = duration_cast<microseconds>(stop1 - start1);
  108. cerr << "Time: " << duration . count() / 1000 << " ms" << endl;
  109.  
  110. return 0;
  111. }
Success #stdin #stdout #stderr 0.05s 35772KB
stdin
Standard input is empty
stdout
1399616
stderr
Time: 44 ms