# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
46596 | ulna | Evacuation plan (IZhO18_plan) | C++11 | 597 ms | 24724 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;
// why am I so weak
int n, m;
int d[100055];
typedef pair<int, int> P;
#define ft first
#define sd second
vector<P> g[100055], ng[100055];
int par[100055], _rank[100055];
bool used[100055];
int depth[100055], val[100055];
inline void add_edge(int from, int to, int cost) {
g[from].push_back(P(to, cost));
}
int fin(int x) {
if (par[x] == x) return x;
return fin(par[x]);
}
void unite(int x, int y, int val) {
x = fin(x), y = fin(y);
if (x == y) return;
Compilation message (stderr)
# | 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... |