Compile Error
foo.cc: In function 'void solve(int)':
foo.cc:18:7: error: 'dbg' was not declared in this scope
18 | dbg(odds, x);
| ^~~
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
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 E. Array partition
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-11 12:23:48
- Judged At
- 2024-11-11 03:27:29
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes