# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
762469 | goodbyehanbyeol | Trip to the Galapagos Islands (FXCUP4_island) | C++17 | 4813 ms | 50036 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 "island.h"
#include <bits/stdc++.h>
using namespace std;
const int NS = (int)2e5 + 4;
int lca[NS][24], pr[NS];
int n, m, ncnt, k;
vector<int> gr[NS], way[NS];
int euler[NS], en, tim[NS], dep[NS];
int eback[NS];
int fd(int x){
return (x == pr[x] ? x : pr[x] = fd(pr[x]));
}
void Init(int K, std::vector<int> F, std::vector<int> S, std::vector<int> E){
int n = F.size(), m = S.size(), k = K;
for(int i = 0; i < NS; ++i){
pr[i] = i;
}
ncnt = n;
for(int i = m - 1; i >= 0; --i){
int x = S[i], y = E[i];
int px = fd(x), py = fd(y);
if(px == py){
continue;
}
pr[px] = pr[py] = ncnt;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |