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 "parks.h"
#include<bits/stdc++.h>
using namespace std;
int construct_roads(std::vector<int> x, std::vector<int> y) {
if (x.size() == 1) {
build({}, {}, {}, {});
return 1;
}
int n = x.size();
std::vector<int> u, v, a, b;
map<pair<int,int>, int> ft;
for (int i = 0; i < n;i ++)
ft[{x[i], y[i]}] = i;
set<pair<int,int>> bench;
for (int i = 0; i < n; i++) {
for (auto [dx, dy] : {pair{0, -2}, {0, +2}, {-2, 0}, {+2, 0}}) {
pair pos{x[i]+dx, y[i]+dx};
if (!ft.count(pos)) continue;
int j = ft[pos];
u.push_back(i);
v.push_back(j);
vector<pair<int,int>> pos_bench;
if (dx) {
pos_bench = {{x[i], y[i]+1}, {x[i], y[i]-1}};
} else {
pos_bench = {{x[i]+1, y[i]}, {x[i]-1, y[i]}};
}
bool done = 0;
for (auto pos : pos_bench) {
if (bench.count(pos) == 0) {
done = 1;
a.push_back(pos.first);
b.push_back(pos.second);
break;
}
}
if (!done) return 0;
}
}
build(u, v, a, b);
return 1;
}
# | 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... |