# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
861185 | GordonRemzi007 | Soccer Stadium (IOI23_soccer) | C++17 | 4518 ms | 348 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 <iostream>
#include <vector>
using namespace std;
int biggest_stadium(int n, vector<vector<int>> a) {
int res = 1, temp, down, up;
bool ok, can1, can2;
vector<pair<int,int>> free;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(!a[i][j]) free.push_back({i, j});
}
}
for(int i = 2; i < (1<<free.size()); i++) {
temp = i;
vector<int> tempfree;
for(int i = 0; i < free.size() && temp > 0; i++, temp/=2) {
if(temp%2==0) tempfree.push_back(i);
}
ok = true;
for(int i = 0; i < tempfree.size(); i++) {
for(int j = 0; j < tempfree.size(); j++) {
if(free[tempfree[i]].first < free[tempfree[j]].first) {
down = tempfree[i];
up = tempfree[j];
} else {
down = tempfree[j];
up = tempfree[i];
}
Compilation message (stderr)
# | 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... |