# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
366067 | mahmoudbadawy | Sjekira (COCI20_sjekira) | C++17 | 275 ms | 10348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define F first
#define S second
using namespace std;
const int N=1e5+5;
set< pair<int, pair<int,int> > > ss;
int uni[N],mx[N];
int n;
int uni_find(int x)
{
return uni[x]=(uni[x]==x?x:uni_find(uni[x]));
}
int unio(int x,int y)
{
x=uni_find(x); y=uni_find(y);
if(x==y) return 0;
uni[x]=y;
mx[y]=max(mx[x],mx[y]);
return 1;
}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
uni[i]=i;
scanf("%d",&mx[i]);
}
for(int i=1;i<n;i++)
{
int x,y;
scanf("%d %d",&x,&y);
ss.insert({mx[x]+mx[y],{x,y}});
}
long long ans=0;
while(ss.size())
{
auto cur=*ss.begin(); ss.erase(ss.begin());
int a=uni_find(cur.S.F),b=uni_find(cur.S.S);
if(a==b) continue;
if(mx[a]+mx[b]!=cur.F)
ss.insert({mx[a]+mx[b],{cur.S.F,cur.S.S}});
else
{
ans+=mx[a]+mx[b];
unio(a,b);
}
}
printf("%lld\n",ans);
}
컴파일 시 표준 에러 (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... |