# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
414346 | prvocislo | 자매 도시 (APIO20_swap) | C++17 | 2058 ms | 12084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "swap.h"
#include <bits/stdc++.h>
using namespace std;
class dsu
{
public:
vector<int> p, s, ok; // ok - je tento komponent cyklus alebo obsahuje rozvetvenie?
int root(int x) { return x == p[x] ? x : p[x] = root(p[x]); }
void merge(int a, int b)
{
a = root(a), b = root(b);
if (a == b) return ok[a] = true, void(); // cyklus
if (s[a] < s[b]) swap(a, b);
p[b] = a; s[a] += s[b];
ok[a] |= ok[b];
}
void good(int u) { ok[root(u)] = true; }
dsu(int n): p(vector<int>(n)), s(vector<int>(n, 1)), ok(vector<int>(n, false))
{
for (int i =0;i<n;i++) p[i] = i;
}
};
struct edge { int u, v, w; };
bool cmp(edge a, edge b) { return a.w < b.w; }
int n, m;
vector<edge> e;
void init(int N, int M, vector<int> U, vector<int> V, vector<int> W) { n = N, m = M;
for (int i = 0; i < m;i++) e.push_back({U[i], V[i], W[i]});
sort(e.begin(), e.end(), cmp);
# | 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... |