This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "soccer.h"
using namespace std;
typedef long long ll;
int biggest_stadium(int n, vector<vector<int>> f) {
vector<pair<ll, ll>> v(n, {-1, -1}), h(n, {-1, -1});
ll num = 0;
bool done = false;
pair<ll, ll> prev = {-1, -1};
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (!f[i][j]) {
if (done) return 0;
if (v[i].first == -1) v[i].first = j;
if (j - v[i].second > 1 && v[i].second != -1) return 0;
v[i].second = j;
num++;
}
}
if (v[i].first == -1 && num > 0) done = true;
if (prev.first == -1) {
prev = v[i];
continue;
}
if (v[i].first == -1) continue;
if (v[i].first > prev.first && v[i].second > prev.second) return 0;
if (v[i].first < prev.first && v[i].second < prev.second) return 0;
}
num = 0;
done = false;
prev = {-1, -1};
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (!f[j][i]) {
if (done) return 0;
if (h[i].first == -1) h[i].first = j;
if (j - h[i].second > 1 && h[i].second != -1) return 0;
h[i].second = j;
num++;
}
}
if (h[i].first == -1 && num > 0) done = true;
if (prev.first == -1) {
prev = h[i];
continue;
}
if (h[i].first == -1) continue;
if (h[i].first > prev.first && h[i].second > prev.second) return 0;
if (h[i].first < prev.first && h[i].second < prev.second) return 0;
}
return num;
}
# | 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... |