이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main () {
ios_base::sync_with_stdio(0);
cin.tie(0);
int type;
cin >> type;
int n;
cin >> n;
vector<vector<int>> adj(n, vector<int>(n));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
cin >> adj[i][j];
}
}
cerr << "First Passed" << '\n';
class dsu {
public:
vector<int> par, ct;
dsu(int sz) {
par.resize(sz);
iota(par.begin(), par.end(), 0);
ct.resize(sz, 1);
}
int get_par(int nd) {
return par[nd] = (nd == par[nd] ? nd : get_par(par[nd]));
}
bool Merge(int a, int b) {
a = get_par(a);
b = get_par(b);
if (a == b) return false;
if (ct[a] < ct[b]) swap(a, b);
ct[a] += ct[b];
par[b] = a;
return true;
}
};
vector<pair<int, int>> edges;
dsu g(n);
vector<vector<int>> g2(n);
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (adj[i][j] == 1 && g.Merge(i, j)) {
edges.emplace_back(i, j);
}
}
}
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
if (adj[i][j] == 2 && g.Merge(i, j)) {
edges.emplace_back(i, j);
}
}
}
cerr << "Passed" << '\n';
for (auto el : edges) {
g2[el.first].push_back(el.second);
g2[el.second].push_back(el.first);
}
dsu col(n);
struct mn {
int source, l, r;
};
vector<vector<mn>> ct(n);
for (int i = 0; i < n; ++i) {
vector<int> len(n);
function<void(int, int)> dfs = [&](int nd, int par) {
assert(len[nd] < n);
for (auto el : g2[nd]) {
if (el == par) continue;
len[el] = len[nd] + 1;
if (adj[i][nd] == adj[i][el]) {
ct[len[el]].push_back(mn{i, nd, el});
}
dfs(el, nd);
}
};
dfs(i, -1);
}
vector<vector<bool>> vis(n, vector<bool>(n));
for (int i = 0; i < n; ++i) {
for (auto el : ct[i]) {
if (vis[el.l][el.r]) continue;
vis[el.l][el.r] = true;
col.Merge(el.source, el.r);
}
}
for (int i = 0; i < n; ++i) {
cout << col.get_par(i) + 1 << ' ';
}
cout << '\n';
for (auto el : edges) cout << el.first + 1 << ' ' << el.second + 1 << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |