이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define X first
#define Y second
#define sz(a) (int)a.size()
#define ll long long
#define ld long double
const int N = 3e5 + 100;
int dsu[N];
int val[N];
int rang[N];
int pred(int a)
{
if(a == dsu[a]) return a;
return dsu[a] = pred(dsu[a]);
}
void unite(int a, int b)
{
a = pred(a);
b = pred(b);
if(rang[b] < rang[a])
{
swap(a, b);
}
dsu[b] = a;
rang[a] += rang[b];
val[a] = max(val[a], val[b]);
}
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
vector <pair <int, int> > a(n);
for(int i = 0; i < n; i++)
{
cin >> a[i].X;
val[i] = a[i].X;
a[i].Y = i;
dsu[i] = i;
rang[i] = 1;
}
sort(a.begin(), a.end());
vector <vector <int> > g(n);
vector <pair <int, int> > vec;
for(int i = 0; i < n - 1; i++)
{
int a, b;
cin >> a>> b;
a--;
b--;
vec.push_back({a, b});
g[a].push_back(b);
g[b].push_back(a);
}
ll s = 0;
for(int i = 0; i < n - 1; i++)
{
int a = -1, b = -1;
for(int j = 0; j < n - 1; j++)
{
if(pred(vec[j].X) != pred(vec[j].Y) && (a == -1 || val[pred(a)] + val[pred(b)] > val[pred(vec[j].X)] + val[pred(vec[j].Y)])){
a = vec[j].X;
b = vec[j].Y;
}
}
s += val[pred(a)] + val[pred(b)];
unite(a, b);
}
cout << s;
return 0;
}
# | 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... |