#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
#include "/home/ioi/egoi2024/d2/debug.h"
#else
#define debug(...) void(37)
#endif
int biggest_stadium(int N, std::vector<std::vector<int>> F) {
int tree_count = 0, one_tree_i, one_tree_j;
for (int i = 0; i < N; ++i) for (int j = 0; j < N; ++j) {
if (F[i][j]) {
tree_count++;
one_tree_i = i, one_tree_j = j;
}
}
if (tree_count <= 1) {
if (tree_count == 0) return N * N;
int i = one_tree_i;
int j = one_tree_j;
return N * N - min(i + 1, N - i) * min(j + 1, N - j);
}
if (true) {
vector<int> T(N, -1), B(N, -1), L(N, -1), R(N, -1);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
if (F[i][j]) continue;
if (T[j] == -1) T[j] = N - 1 - i;
if (L[i] == -1) L[i] = N - 1 - j;
B[j] = i;
R[i] = j;
}
}
int verc = 0, horc = 0;
for (int i = 0; i < N; ++i) {
if (L[i] != -1) {
horc += 2 * (N - 1) - (L[i] + R[i]);
} else {
horc += N;
}
if (T[i] != -1) {
verc += 2 * (N - 1) - (T[i] + B[i]);
} else {
verc += N;
}
}
bool bad = (verc != tree_count || horc != tree_count);
debug(bad, L, R, B, T);
int mx_H = 0;
while (mx_H < N - 1 && (L[mx_H] == -1 || ((L[mx_H + 1] >= L[mx_H]) && (R[mx_H + 1] >= R[mx_H])))) mx_H++;
debug(mx_H);
for (int i = 0; i < mx_H; ++i) {
if (L[i] == -1) continue;
if (L[i + 1] == -1 || L[i + 1] < L[i] || R[i + 1] < R[i]) bad = true;
}
debug(bad);
for (int i = mx_H + 1; i < N; ++i) {
if (L[i] == -1) continue;
if (L[i - 1] == -1 || L[i - 1] < L[i] || R[i - 1] < R[i]) bad = true;
}
int mx_V = 0;
while (mx_V < N - 1 && (B[mx_V] == -1 || ((B[mx_V + 1] >= B[mx_V]) && (T[mx_V + 1] >= T[mx_V])))) mx_V++;
debug(mx_V);
for (int i = 0; i < mx_V; ++i) {
if (B[i] == -1) continue;
if (B[i + 1] == -1 || B[i + 1] < B[i] || T[i + 1] < T[i]) bad = true;
}
for (int i = mx_V + 1; i < N; ++i) {
if (B[i] == -1) continue;
if (B[i - 1] == -1 || B[i - 1] < B[i] || T[i - 1] < T[i]) bad = true;
}
if (bad) {
return 0;
} else {
return N * N - tree_count;
}
}
}
Compilation message
soccer.cpp: In function 'int biggest_stadium(int, std::vector<std::vector<int> >)':
soccer.cpp:24:46: warning: 'one_tree_j' may be used uninitialized in this function [-Wmaybe-uninitialized]
24 | return N * N - min(i + 1, N - i) * min(j + 1, N - j);
| ~~^~~
soccer.cpp:24:26: warning: 'one_tree_i' may be used uninitialized in this function [-Wmaybe-uninitialized]
24 | return N * N - min(i + 1, N - i) * min(j + 1, N - j);
| ~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
partial |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
ok |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Correct |
0 ms |
600 KB |
ok |
4 |
Correct |
0 ms |
348 KB |
ok |
5 |
Correct |
0 ms |
348 KB |
ok |
6 |
Correct |
0 ms |
348 KB |
ok |
7 |
Correct |
1 ms |
448 KB |
ok |
8 |
Correct |
20 ms |
2820 KB |
ok |
9 |
Correct |
214 ms |
36076 KB |
ok |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
ok |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Partially correct |
0 ms |
348 KB |
partial |
4 |
Partially correct |
0 ms |
348 KB |
partial |
5 |
Partially correct |
0 ms |
348 KB |
partial |
6 |
Partially correct |
1 ms |
348 KB |
partial |
7 |
Incorrect |
0 ms |
348 KB |
wrong |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
partial |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Correct |
0 ms |
348 KB |
ok |
4 |
Partially correct |
0 ms |
348 KB |
partial |
5 |
Partially correct |
0 ms |
348 KB |
partial |
6 |
Partially correct |
0 ms |
348 KB |
partial |
7 |
Partially correct |
1 ms |
348 KB |
partial |
8 |
Incorrect |
0 ms |
348 KB |
wrong |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
partial |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Correct |
0 ms |
348 KB |
ok |
4 |
Correct |
0 ms |
600 KB |
ok |
5 |
Correct |
0 ms |
348 KB |
ok |
6 |
Partially correct |
0 ms |
348 KB |
partial |
7 |
Partially correct |
0 ms |
348 KB |
partial |
8 |
Partially correct |
0 ms |
348 KB |
partial |
9 |
Partially correct |
1 ms |
348 KB |
partial |
10 |
Incorrect |
0 ms |
348 KB |
wrong |
11 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
partial |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Correct |
0 ms |
348 KB |
ok |
4 |
Correct |
0 ms |
600 KB |
ok |
5 |
Correct |
0 ms |
348 KB |
ok |
6 |
Partially correct |
0 ms |
348 KB |
partial |
7 |
Partially correct |
0 ms |
348 KB |
partial |
8 |
Partially correct |
0 ms |
348 KB |
partial |
9 |
Partially correct |
1 ms |
348 KB |
partial |
10 |
Incorrect |
0 ms |
348 KB |
wrong |
11 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
partial |
2 |
Correct |
0 ms |
348 KB |
ok |
3 |
Correct |
0 ms |
348 KB |
ok |
4 |
Correct |
0 ms |
600 KB |
ok |
5 |
Correct |
0 ms |
348 KB |
ok |
6 |
Correct |
0 ms |
348 KB |
ok |
7 |
Correct |
0 ms |
348 KB |
ok |
8 |
Correct |
1 ms |
448 KB |
ok |
9 |
Correct |
20 ms |
2820 KB |
ok |
10 |
Correct |
214 ms |
36076 KB |
ok |
11 |
Partially correct |
0 ms |
348 KB |
partial |
12 |
Partially correct |
0 ms |
348 KB |
partial |
13 |
Partially correct |
0 ms |
348 KB |
partial |
14 |
Partially correct |
1 ms |
348 KB |
partial |
15 |
Incorrect |
0 ms |
348 KB |
wrong |
16 |
Halted |
0 ms |
0 KB |
- |