# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
198270 | alrad | Preokret (COCI19_preokret) | C++17 | 2 ms | 420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base :: sync_with_stdio(0);
cin.tie(0) , cout.tie(0);
int n;
cin >> n;
int a = 0 , b = 0;
int ties = 1 , turnover = 0;
int p = -1 , cur = 0;
for (int i = 1; i <= n; i++) {
int x;
cin >> x;
(x == 1 ? a++ : b++);
if (p == x) {
cur++;
} else {
if (p == 1) {
if (a - cur < b) {
turnover = max(turnover , cur);
}
} else if (p == 2) {
if (b - cur < a) {
turnover = max(turnover , cur);
}
}
p = x;
cur = 1;
}
if (a == b) {
ties++;
}
}
if (p == 1) {
if (a - cur < b) {
turnover = max(turnover , cur);
}
} else if (p == 2) {
if (b - cur < a) {
turnover = max(turnover , cur);
}
}
cout << a << " " << b << '\n';
cout << ties << '\n';
cout << turnover << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |