/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 392.0 KiB
#3 Accepted 1ms 484.0 KiB
#4 Accepted 1ms 540.0 KiB
#5 Accepted 1ms 340.0 KiB
#6 Accepted 1ms 540.0 KiB
#7 Accepted 1ms 540.0 KiB
#8 Accepted 1ms 388.0 KiB
#9 Accepted 26ms 924.0 KiB
#10 Accepted 26ms 924.0 KiB
#11 Accepted 26ms 924.0 KiB
#12 Accepted 1ms 540.0 KiB
#13 Accepted 1ms 396.0 KiB
#14 Accepted 15ms 928.0 KiB
#15 Accepted 15ms 928.0 KiB
#16 Accepted 15ms 928.0 KiB

Code

#include  <bits/stdc++.h>
using namespace std;
 
#ifdef LOCAL
#include "debug.hpp"
#else
#define bug(...)
#endif

typedef long long ll;
#define endl "\n"
#define ws " "
#define yy cout<<"YES\n";
#define nn cout<<"NO\n";

signed main(){
    int tc=0, tcMax=1;
    // cin >> tcMax;
    while (tc++<tcMax) {
        // bug(tc);
        int n;
        cin>>n;
        int tot = 0;
        vector<int> ara(n);
        for(int i = 0; i < n; i++){
            cin>>ara[i];
            tot+=ara[i];
        }
        if(tot % 2){
            cout<<-1<<endl;
            continue;
        }
        int count = 0;
        int sw = 0;
        for(int i = 0; i < n; i++){
            if(ara[i]%2){
                if(sw == 1){
                    count++;
                    sw = 0;
                }else{
                    sw = 1;
                }

            }else if(ara[i]%2 == 0 && sw == 0){
                count++;
            }
        }
        cout<<count<<endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1042 Array partition
Contest
TLE_Headquarters - round #1
Language
C++17 (G++ 13.2.0)
Submit At
2024-03-27 17:14:28
Judged At
2024-03-27 17:14:28
Judged By
Score
100
Total Time
26ms
Peak Memory
928.0 KiB