이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
int mvx[]={1,0,-1,0},mvy[]={0,1,0,-1};
int biggest_stadium(int n, std::vector<std::vector<int>> a)
{
//bool ok=true;
for (int i=0;i<n;i++){
for (int j=0;j<n;j++){
if (!a[i][j]) continue;
int h=0;
for (int k=0;k<4;k++){
int x=i+mvx[k],y=j+mvy[k];
if (x<0 || x>=n || y<0 || y>=n) continue;
h+=(!a[x][y]);
}
if (h>1) return 0;
}
}return 1;
}
# | 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... |