# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
695208 | finn__ | Stranded Far From Home (BOI22_island) | C++17 | 219 ms | 43428 KiB |
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 <bits/stdc++.h>
using namespace std;
struct DSU
{
vector<int64_t> parent, weight;
vector<vector<int64_t>> components;
DSU(size_t n, vector<int64_t> const &s)
{
parent = vector<int64_t>(n, -1);
weight = vector<int64_t>(s.begin(), s.end());
components = vector<vector<int64_t>>(n);
for (size_t i = 0; i < n; i++)
components[i].push_back(i);
}
int root(int u)
{
return parent[u] < 0 ? u : parent[u] = root(parent[u]);
}
void merge(int u, int v)
{
u = root(u), v = root(v);
if (u == v)
return;
if (parent[u] > parent[v])
swap(u, v);
# | 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... |