JAVA CCF-201412-4 最优灌溉

欢迎访问我的CCF认证解题目录


题目描述

在这里插入图片描述

思路过程

这道题是最小生成树的题,好水啊这题,直接套就行了,都不用怎么改,这里我用的是克鲁斯卡尔算法。
注意:这道题输入量较大,使用java进行求解的话要优化一下输入,否则会超时

代码

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Comparator;
import java.util.PriorityQueue;

public class Main {
	
	public static int[] father = new int[100005];
	
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] line = br.readLine().split(" ");
		int n = Integer.parseInt(line[0]), m = Integer.parseInt(line[1]), count = 0;
		long minSum = 0;
		PriorityQueue<Edge> edges = new PriorityQueue<Edge>(new Comparator<Edge>() {
			@Override
			public int compare(Edge o1, Edge o2) {
				return o1.cost - o2.cost;	//按价钱升序
			}
		});
		
		//初始化
		for ( int i = 1; i < n+1; i++ ) father[i] = i;
		for ( int i = 0; i < m; i++ ) {
			line = br.readLine().split(" ");
			edges.offer(new Edge(Integer.parseInt(line[0]), Integer.parseInt(line[1]), Integer.parseInt(line[2])));
		}
		
		while ( !edges.isEmpty() ) {		//弹出最小的边,如果不成环,则边数加一
			Edge temp = edges.poll();
			int father1 = findFather(temp.v1), father2 = findFather(temp.v2);
			if ( father1 != father2 ) {		//如果父母不同,说明没有边连接
				father[father1] = father2;
				minSum += temp.cost;
				count++;
				if ( count == n-1 ) break;
			}
		}
		System.out.println(minSum);
	}
	
	public static int findFather( int index ) {	//路径压缩
		if ( father[index] == index ) return index;
		int temp = findFather(father[index]);
		father[index] = temp;
		return temp;
	}
	
}
class Edge {
	int v1,v2,cost;
	public Edge(int v1, int v2, int cost) {
		this.v1 = v1;
		this.v2 = v2;
		this.cost = cost;
	}
	@Override
	public String toString() {
		return "v1=" + v1 + ", v2=" + v2 + ", cost=" + cost;
	}
	
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值