이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
#define N 100005
#define NN 1005000
#define PB push_back
#define M ll(1e9 + 7)
#define all(x) x.begin(), x.end()
#define sz(x) int(x.size())
#define pri(x) cout << x << endl
#define endl '\n'
#define _ << " " <<
#define F first
#define S second
using namespace std;
//using namespace __gnu_pbds;
//typedef tree <int, null_type, less <int>, rb_tree_tag, tree_order_statistics_node_update> oredered_set;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef short int si;
int p[N], mx[N];
int fnd(int x)
{
if (p[x] != x)
p[x] = fnd(p[x]);
return p[x];
}
void link(int a, int b)
{
p[b] = a;
mx[a] = max(mx[a], mx[b]);
}
int a[N];
bool cmp(pair <int, int> x, pair <int, int> y)
{
return max(a[x.F], a[x.S]) < max(a[y.F], a[y.S]);
}
int main()
{
ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//freopen("1.in", "r", stdin);
int n;
cin >> n;
for (int i = 1; i <= n; i++) cin >> a[i];
vector <pair <int, int> > pr(n - 1);
for (int i = 1; i < n; i++)
{
int x, y;
cin >> x >> y;
pr[i - 1] = {x, y};
}
sort(all(pr), cmp);
for (int i = 1; i <= n; i++)
{
p[i] = i;
mx[i] = a[i];
}
ll ans = 0;
for (auto it : pr)
{
int l = fnd(it.F), r = fnd(it.S);
ans += mx[l] + mx[r];
link(l, r);
}
pri(ans);
}
# | 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... |