성진이는 한 도시의 시장인데 거지라서 전력난에 끙끙댄다. 그래서 모든 길마다 원래 켜져 있던 가로등 중 일부를 소등하기로 하였다. 길의 가로등을 켜 두면 하루에 길의 미터 수만큼 돈이 들어가는데, 일부를 소등하여 그만큼의 돈을 절약할 수 있다.
그러나 만약 어떤 두 집을 왕래할 때, 불이 켜져 있지 않은 길을 반드시 지나야 한다면 위험하다. 그래서 도시에 있는 모든 두 집 쌍에 대해, 불이 켜진 길만으로 서로를 왕래할 수 있어야 한다.
위 조건을 지키면서 절약할 수 있는 최대 액수를 구하시오.
입력은 여러 개의 테스트 케이스로 구분되어 있다.
각 테스트 케이스의 첫째 줄에는 집의 수 m과 길의 수 n이 주어진다. (1 ≤ m ≤ 200000, m-1 ≤ n ≤ 200000)
이어서 n개의 줄에 각 길에 대한 정보 x, y, z가 주어지는데, 이는 x번 집과 y번 집 사이에 양방향 도로가 있으며 그 거리가 z미터라는 뜻이다. (0 ≤ x, y < m, x ≠ y)
도시는 항상 연결 그래프의 형태이고(즉, 어떤 두 집을 골라도 서로 왕래할 수 있는 경로가 있다), 도시상의 모든 길의 거리 합은 231미터보다 작다.
입력의 끝에서는 첫 줄에 0이 2개 주어진다.
각 테스트 케이스마다 한 줄에 걸쳐 절약할 수 있는 최대 비용을 출력한다.
7 11
0 1 7
0 3 5
1 2 8
1 3 9
1 4 7
2 4 5
3 4 15
3 5 6
4 5 8
4 6 9
5 6 11
0 0
51
이 문제는 최소스패닝트리와 관련된 문제이다. 최소스패닝트리의 알고리즘 중 Prim 알고리즘을 이용해서 풀었다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.PriorityQueue;
import java.util.Queue;
public class Main {
static boolean[] visited;
static ArrayList<Node>[] nodeList;
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
while(true) {
String[] input = br.readLine().split(" ");
int N = Integer.parseInt(input[0]);
int E = Integer.parseInt(input[1]);
if(N==0 && E==0) break;
nodeList = new ArrayList[N];
visited = new boolean[N];
int sum = 0;
for(int i=0; i<N; i++) {
nodeList[i] = new ArrayList<>();
}
for(int i=0; i<E; i++) {
input = br.readLine().split(" ");
nodeList[Integer.parseInt(input[0])].add(new Node(Integer.parseInt(input[0]), Integer.parseInt(input[1]), Integer.parseInt(input[2])));
nodeList[Integer.parseInt(input[1])].add(new Node(Integer.parseInt(input[1]), Integer.parseInt(input[0]), Integer.parseInt(input[2])));
sum += Long.parseLong(input[2]);
}
int res = MST();
System.out.println(sum-res);
}
}
public static int MST() {
PriorityQueue<Node> pq = new PriorityQueue<>();
ArrayList<Node> tempList;
Node tempNode;
Queue<Integer> queue = new LinkedList<>();
int answer = 0;
queue.add(0);
while(!queue.isEmpty()) {
int currentNode = queue.poll();
visited[currentNode] = true;
tempList = nodeList[currentNode];
for(int i=0; i<tempList.size(); i++) {
if(!visited[tempList.get(i).end]) {
pq.add(tempList.get(i));
}
}
while(!pq.isEmpty()) {
tempNode = pq.poll();
if(!visited[tempNode.end]) {
visited[tempNode.end]=true;
answer += tempNode.cost;
queue.add(tempNode.end);
break;
}
}
}
return answer;
}
static class Node implements Comparable<Node>{
int start;
int end;
long cost;
public Node(int start, int end, long cost) {
this.start = start;
this.end = end;
this.cost = cost;
}
@Override
public int compareTo(Node node) {
return this.cost > node.cost ? 1 : -1;
}
}
}