/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 14ms 560.0 KiB
#3 Wrong Answer 14ms 568.0 KiB

Code

#include<bits/stdc++.h>
#define ll long long
#define endl "\n"
using namespace std;

int main() {
    ios_base::sync_with_stdio(0);cin.tie(0);
    int t,a,b,x;   cin >> t; 
    while(t--){
        cin >> a;
        map<int,int>m;
        while(a--){
            cin >> x;
            m[x]++;
        }
        if(m[0] || m[1]==3 && m[-1]==3)    cout << 0 << endl;
        else{
            if(m[-1]%2!=0 && m[-1]<=(a/3*2+1))   cout << a/3 - 1 << endl;
            else if(m[-1]%2!=0 && m[-1]>(a/3*2-1))   cout << a - m[-1] << endl;
            else if(m[-1]%2==0 && m[1]!=0)    cout << a/3 << endl;
            else    cout << -a/3 << endl;
        }
    }
  return 0;
}
    

Information

Submit By
Type
Submission
Problem
P1152 Special Array
Contest
Happy New Year 2025
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-02 15:45:11
Judged At
2025-01-02 15:45:11
Judged By
Score
1
Total Time
14ms
Peak Memory
568.0 KiB