# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
374934 | valerikk | Collapse (JOI18_collapse) | C++17 | 8719 ms | 29804 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;
const int N = 1e5 + 7;
int dsu[N], sz[N];
int comps;
vector<int> g[N];
bool vis[N];
int added;
void dfs(int v) {
vis[v] = 1;
for (int u : g[v]) {
if (!vis[u]) {
++added;
dfs(u);
}
}
}
int get(int v) {
return dsu[v] == v ? v : dsu[v] = get(dsu[v]);
}
void unite(int v, int u) {
v = get(v);
u = get(u);
if (v == u) return;
# | 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... |