7 - 10 도로 촌 촌 통 (30 분) 자바 버 전
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
public class Main{
static class node{ //每一条路径
int start,end;
int cost;
node(int x,int y){
this.start = x;
this.end = y;
}
node(int x,int y,int z){
this.start = x;
this.end = y;
this.cost = z;
}
}
static node f[] = new node[3010];
static int n,m,cost;
static int[] mark = new int[3010];
private static void init(){
for(int i=0;i<=n;i++){
mark[i]=i;
}
}
private static int getf(int x){
if(mark[x]==x) return x;
else{
mark[x]=getf(mark[x]);
return mark[x];
}
}
private static int merge(int u,int v){
int t1=getf(u);
int t2=getf(v);
if(t1==t2) return 0;
else{
mark[t1]=t2;
return 1;
}
}
public static void main(String[] args){
Scanner in =new Scanner(System.in);
n = in.nextInt();
m = in.nextInt();
init();
for(int i=1;i<=m;i++){
int a=in.nextInt();
int b=in.nextInt();
int c=in.nextInt();
f[i] =new node(a,b,c);
}
Arrays.sort(f,1,m+1,new Comparator() {
@Override
public int compare(node a,node b){
if(a.cost1;i++){
if(merge(f[i].start, f[i].end)==1){
sum+=f[i].cost;
cnt--;
//System.out.println(cnt);
}
}
//for(int i=1;i<=n;i++){
// System.out.println(getf(mark[i]));
//}
if(cnt==1) System.out.println(sum);
else System.out.println(-1);
in.close();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU 1875 는 최소 생 성 트 리 입 니 다.그들 이 다른 작은 섬 에 가 고 싶 을 때 작은 배 를 저어 이 루어 져 야 합 니 다.현재 정 부 는 백도 호 를 대대적으로 발전 시 키 기로 결정 했다. 조건 에 맞 는 다 는 것 은 작은 섬 2 곳 사이 의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.