# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1068146 | AlphaBruh | 축구 경기장 (IOI23_soccer) | C++17 | 245 ms | 39812 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "soccer.h"
#include<bits/stdc++.h>
using namespace std;
#define P pair<int,int>
int tot=0;
P emprg(vector<int>x){
P ret;
int cnt=0,fst=x.size(),lst=-1;
for(int i=0;i<x.size();i++){
if(x[i]==0){
cnt++;
fst=min(fst,i);
lst=max(lst,i);
}
}
tot+=cnt;
if(lst==-1) return{fst,lst};
if(lst-fst+1 == cnt){
ret.first=fst;
ret.second=lst;
return ret;
}
ret.first=-2;
return ret;
}
int rla(P prf, P nxt){
if(prf.first == nxt.first && prf.second == nxt.second) return 0;
if (prf.first <= nxt.first && prf.second >= nxt.second) return -1;
if(prf.first >= nxt.first && prf.second <= nxt.second) return 1;
return -2;
}
int biggest_stadium(int N, std::vector<std::vector<int>> F)
{
tot=0;
vector<P>allr;
for(int i=0;i<N;i++){
P get(emprg(F[i]));
if(get.first==-2) return 0;
if(get.second==-1 && allr.empty()) continue;
allr.push_back(get);
}
P prf=allr[0];
bool inc=1;
for(int i=1;i<allr.size();i++){
int x=rla(prf,allr[i]);
if(x==-1) inc=0;
else if(x==1 && inc==0) return 0;
prf=allr[i];
}
for(int i=0;i<allr.size();i++){
for(int j=0;j<i;j++){
if(rla(allr[i],allr[j])==-2) return 0;
}
}
return tot;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |