/ SeriousOJ /

Record Detail

Compile Error

foo.cc:7:10: fatal error: Ash.cpp: No such file or directory
    7 | #include "Ash.cpp"
      |          ^~~~~~~~~
compilation terminated.

Code

#include <bits/stdc++.h>

#pragma GCC optimize("Ofast")
using namespace std;

#ifndef ONLINE_JUDGE
#include "Ash.cpp"
#else
#define dbg(...)
#define dbgA(...)
#endif

void solve(int cs) {
  int n;
  cin >> n;
  int res = 0;
  int cnt = 0;
  int odd = 0;
  int odds = 0;
  for (int i = 0; i < n; i++) {
    int x;
    cin >> x;
    if (x % 2) {
      odds += 1;
      dbg(odds, x);
      if (odd) {
        odd = 0;
        res += 1;
      } else {
        odd = 1;
      }
    } else {
      if (!odd) res += 1;
    }
  }
  cout << ((odds % 2) ? -1 : res) << "\n";
}

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int tc = 1;
  // cin >> tc;
  for (int cs = 1; cs <= tc; cs++) {
    solve(cs);
  }
  return 0;
}

Information

Submit By
Type
Submission
Problem
P1042 Array partition
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-11 12:23:40
Judged At
2024-10-03 13:42:07
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes