# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
304055 | 2qbingxuan | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define safe std::cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#define debug(...) qqbx(#__VA_ARGS__, __VA_ARGS__)
template <typename H, typename ...T> void qqbx(const char*s, const H &h, T ...args) {
for(; *s && *s != ','; ++s) if(*s != ' ') std::cerr << *s;
std::cerr << " = " << h << (sizeof...(T) ? ", " : "\n");
if constexpr (sizeof...(T)) qqbx(++s, args...);
}
#define pb emplace_back
using namespace std;
typedef long long ll;
const int N = 2500025;
struct Dsu {
vector<int> pa;
Dsu(int n) : pa(n) { iota(pa.begin(), pa.end(), 0); }
int anc(int x) { return x==pa[x] ? x : pa[x]=anc(pa[x]); }
bool same(int x, int y) { return anc(x) == anc(y); }
bool join(int x, int y) {
if((x=anx(x)) == (y=anc(y))) return false;
return pa[y] = x, true;
}
};
int construct(vector<vector<int>> p) {
int n = p.size();
vector<vector<int>> res(n, vector<int>(n));
Dsu dsu(n);
for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) {
if(p[i][j] == 1) {
if(dsu.join(i, j)) res[i][j] = res[j][i] = 1;
}
}
vector<vector<int>> g(n);
for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) {
if(p[i][j] == 2) {
int a = dsu.anc(i), b = dsu.anc(j);
if(a == b) return 0;
g[a].pb(b);
}
}
for(int i = 0; i < n; i++) if(!vis[i]) {
if(!g[i].size()) continue;
vector<int> tmp;
dfs(i, tmp);
if(tmp.size() == 2) return 0;
int last = tmp.back();
for(int x: tmp) {
res[last][x] = res[x][last] = 1;
dsu.join(last, x);
last = x;
}
}
for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) if(p[i][j] == 0 && dsu.same(i, j)) return 0;
build(res);
return 1;
}