이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "parks.h"
#pragma GCC optimize("Ofast", "unroll-loops")
#include <bits/stdc++.h>
using namespace std;
// #define int long long
// #define double long double
using pii = pair<int, int>;
template<typename T>
using Prior = std::priority_queue<T>;
template<typename T>
using prior = std::priority_queue<T, vector<T>, greater<T>>;
// #define X first
// #define Y second
#define eb emplace_back
#define pb pop_back
#define pf pop_front
#define ALL(x) begin(x), end(x)
#define RALL(x) rbegin(x), rend(x)
namespace {
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
const int maxn = 2E5 + 5;
const int dx[] = {2, 0, -2, 0};
const int dy[] = {0, 2, 0, -2};
map<pii, int> points;
vector<int> p(maxn);
int R(int x) {return x ^ p[x] ? p[x] = R(p[x]) : x;}
void U(int x, int y) {x = R(x), y = R(y); p[x] = y;}
} /// end of namespace
int construct_roads(vector<int> X, vector<int> Y) {
int N = X.size();
vector<int> u, v, a, b;
if (N == 1) return build({}, {}, {}, {}), 1;
iota(ALL(p), 0);
for (int i = 0; i < N; ++i) points[{X[i], Y[i]}] = i+1;
for (int i = 0; i < N; ++i) {
for (int d = 0; d < 4; ++d) {
int nei = points[{X[i] + dx[d], Y[i] + dy[d]}];
if (nei-1 > i) {
U(i, nei-1);
u.eb(i), v.eb(nei-1);
if (X[i] == X[nei-1] and X[i] == 2) a.eb(1), b.eb(Y[i] + Y[nei-1] >> 1);
if (X[i] == X[nei-1] and X[i] == 4) a.eb(5), b.eb(Y[i] + Y[nei-1] >> 1);
if (Y[i] == Y[nei-1]) a.eb(3), b.eb(Y[i] + 1);
}
}
}
for (int i = 0; i < N; ++i) if (R(i) != R(0)) return 0;
return build(u, v, a, b), 1;
}
컴파일 시 표준 에러 (stderr) 메시지
parks.cpp: In function 'int construct_roads(std::vector<int>, std::vector<int>)':
parks.cpp:52:72: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
52 | if (X[i] == X[nei-1] and X[i] == 2) a.eb(1), b.eb(Y[i] + Y[nei-1] >> 1);
parks.cpp:53:72: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
53 | if (X[i] == X[nei-1] and X[i] == 4) a.eb(5), b.eb(Y[i] + Y[nei-1] >> 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... |