# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
711014 | ld_minh4354 | Stranded Far From Home (BOI22_island) | C++17 | 368 ms | 75516 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;
#define int long long
#define fi first
#define se second
#define pb push_back
#define debug(x) cout<<#x<<": "<<x<<"\n"
int n,m,s[200005],ans[200005];
pair<int,pair<int,int>> ed[200005];
int parent[200005],grpsize[200005],sum[200005];
set<int> nodes[200005];
int getroot(int x)
{
if (x==parent[x]) return x;
return getroot(parent[x]);
}
void merge(int x,int y,int id)
{
int root_x=getroot(x);
int root_y=getroot(y);
if (root_x==root_y) return;
if (sum[root_x]<ed[id].fi)
{
# | 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... |