이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
bool checkIntervals(pair<int,int> a, pair<int,int> b)
{
if( a.first > b.first )
swap( a , b );
if( a.first == b.first )
return true;
return b.second <= a.second;
}
bool isGood(int N, vector<vector<int>>& F)
{
vector<pair<int,int>> intervals;
for(int i = 0 ; i < N ; i++)
{
int numCells = 0;
int minCell = N, maxCell = -1;
for(int j = 0 ; j < N ; j++)
{
if( F[i][j] == 0 )
{
numCells++;
minCell = min( minCell , j );
maxCell = max( maxCell , j );
}
}
if( numCells == 0 )
continue;
if( numCells != maxCell - minCell + 1 )
return false;
intervals.push_back( { minCell , maxCell } );
}
return checkIntervals( intervals.front() , intervals.back() );
}
int biggest_stadium(int N, vector<vector<int>> F)
{
if( !isGood(N, F) )
return -1;
for(int i = 0 ; i < N ; i++)
for(int j = 0 ; j < i ; j++)
swap( F[i][j] , F[j][i] );
if( !isGood(N, F) )
return -1;
int sum = 0;
for(int i = 0 ; i < N ; i++)
for(int j = 0 ; j < N ; j++)
sum += 1 - F[i][j];
return sum;
}
# | 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... |