# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
334606 | achibasadzishvili | Sjekira (COCI20_sjekira) | C++14 | 84 ms | 14956 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pb push_back
using namespace std;
ll n,p[200005],mx[200005],ans;
pair<ll,ll>a[200005];
vector<ll>v[200005];
ll find(ll x){
if(x == p[x])return x;
return p[x] = find(p[x]);
}
void join(ll x,ll y){
x = find(x);
y = find(y);
if(x == y)return;
ans += mx[x] + mx[y];
mx[x] = max(mx[x] , mx[y]);
p[y] = x;
}
int main(){
ios::sync_with_stdio(false);
cin >> n;
for(int i=1; i<=n; i++){
p[i] = i;
cin >> a[i].f;
mx[i] = a[i].f;
a[i].s = i;
}
for(int i=1; i<n; i++){
ll x,y;
cin >> x >> y;
if(a[x].f >= a[y].f)
v[x].pb(y);
if(a[y].f >= a[x].f)
v[y].pb(x);
}
sort(a + 1 , a + n + 1);
for(int o=1; o<=n; o++){
ll x = a[o].s;
for(int i=0; i<v[x].size(); i++){
ll y = v[x][i];
join(x , y);
}
}
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (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... |