# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
894716 | JeanBombeur | Soccer Stadium (IOI23_soccer) | C++17 | 249 ms | 43664 KiB |
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 <cstdio>
#include <vector>
using namespace std;
// <|°_°|>
const int MAX_ROWS = 2001;
bool Empty[MAX_ROWS][MAX_ROWS];
bool Check(int up, int down, int left, int right) {
// printf("CHECKING : %d %d %d %d\n", up, down, left, right);
int highest = -1;
int low = 1e9;
int leftBorder = 1e9, rightBorder = -1;
for (int i = up; i < down && highest < 0; i ++)
{
for (int j = left; j < right; j ++)
{
if (Empty[i][j])
{
highest = i;
leftBorder = min(leftBorder, j);
if (rightBorder >= 0 && rightBorder < (j - 1))
return 0;
rightBorder = j;
int cur = i;
while (Empty[cur][j])
# | 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... |