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 "soccer.h"
#include <bits/stdc++.h>
using namespace std;
int biggest_stadium(int n, vector<vector<int>> F) {
int r = -1, c = -1;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (F[i][j] == 1) {
r = i, c = j;
}
}
}
if (c == -1) {
return n * n;
}
//cout << "r, c: " << r << ' ' << c << endl;
int ans = (c + 1) * (r) + c; //top left
//cout << "topleft: " << (c + 1) * (r) + c << endl;
ans = max(ans, (c + 1) * (n - r - 1) + c);//bot left
//cout << "botleft: " << (c + 1) * (n - r - 1) + c << endl;
ans = max(ans, (n - c) * (r) + n - c - 1);//topright
//cout << "topright: " << (n - c) * (r) + n - c - 1 << endl;
ans = max(ans, (n - c) * (n - r - 1) + n - c - 1); //bot right
//cout << "botright: " << (n - c) * (n - r - 1) + n - c - 1 << endl;
return ans;
}
# | 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... |