문제https://www.acmicpc.net/problem/10423풀이(29분)import java.io.*;import java.util.*;class Main { static int[] parent; static boolean[] hasPower; static int n, m, k, nonLinked, cost; static List edges = new ArrayList(); public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st..