| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 866415 | vjudge1 | Preokret (COCI19_preokret) | C++17 | 1 ms | 356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef Local
#pragma GCC optimize("O3,unroll-loops")
#endif
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define lim 200000
using namespace std;
const int mod=1000000007ll;
void solve(){
int n;
cin>>n;
int a=0,b=0;
int tie=1,turn=0,cur=0,now=0;
for(int i=0;i<n;i++){
int tem;
cin>>tem;
if(tem==1){
if(a<b){
if(now!=1)cur=0;
cur++;
}
else if(now==1){
cur++;
turn=max(turn,cur);
}
now=1;
a++;
}else{
if(a>b){
if(now!=2)cur=0;
cur++;
}
else if(now==2){
cur++;
turn=max(turn,cur);
}
now=2;
b++;
}
if(a==b){
tie++;
}
}
cout<<a<<" "<<b<<"\n"<<tie<<"\n"<<turn;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
#ifdef Local
freopen(".in","r",stdin);
freopen(".out","w",stdout);
#else
#endif
int t=1;
//cin>>t;
while (t--)
{
solve();
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
