結果

問題 No.748 yuki国のお財布事情
ユーザー tentententen
提出日時 2020-09-01 18:04:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,405 ms / 2,000 ms
コード長 2,111 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 77,812 KB
実行使用メモリ 72,444 KB
最終ジャッジ日時 2024-11-20 04:21:10
合計ジャッジ時間 20,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,136 KB
testcase_01 AC 136 ms
54,064 KB
testcase_02 AC 143 ms
54,104 KB
testcase_03 AC 137 ms
53,984 KB
testcase_04 AC 137 ms
53,992 KB
testcase_05 AC 138 ms
53,984 KB
testcase_06 AC 139 ms
54,480 KB
testcase_07 AC 143 ms
53,944 KB
testcase_08 AC 144 ms
54,076 KB
testcase_09 AC 143 ms
54,180 KB
testcase_10 AC 147 ms
54,220 KB
testcase_11 AC 145 ms
54,160 KB
testcase_12 AC 147 ms
54,296 KB
testcase_13 AC 523 ms
59,464 KB
testcase_14 AC 652 ms
59,512 KB
testcase_15 AC 538 ms
59,676 KB
testcase_16 AC 839 ms
63,904 KB
testcase_17 AC 1,181 ms
72,444 KB
testcase_18 AC 1,283 ms
72,008 KB
testcase_19 AC 1,405 ms
72,168 KB
testcase_20 AC 1,312 ms
71,564 KB
testcase_21 AC 1,247 ms
71,852 KB
testcase_22 AC 136 ms
54,220 KB
testcase_23 AC 136 ms
54,020 KB
testcase_24 AC 136 ms
54,412 KB
testcase_25 AC 1,107 ms
71,800 KB
testcase_26 AC 1,268 ms
71,936 KB
testcase_27 AC 1,208 ms
72,024 KB
testcase_28 AC 1,112 ms
71,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
    	int k = sc.nextInt();
    	Road[] roads = new Road[m];
    	long total = 0;
    	for (int i = 0; i < m; i++) {
    	    roads[i] = new Road(sc.nextInt() - 1, sc.nextInt() - 1, sc.nextInt());
    	    total += roads[i].cost;
    	}
    	UnionFindTree uft = new UnionFindTree(n);
    	long cost = 0;
    	for (int i = 0; i < k; i++) {
    	    int x = sc.nextInt() - 1;
    	    cost += roads[x].cost;
    	    uft.unite(roads[x]);
    	}
    	Arrays.sort(roads);
    	for (Road r : roads) {
    	    if (!uft.same(r)) {
    	        cost += r.cost;
    	        uft.unite(r);
    	    }
    	}
    	System.out.println(total - cost);
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                return parents[x] = find(parents[x]);
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public boolean same(Road r) {
            return same(r.left, r.right);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[(find(x))] = find(y);
            }
        }
        
        public void unite(Road r) {
            unite(r.left, r.right);
        }
    }
    
    static class Road implements Comparable<Road> {
        int left;
        int right;
        int cost;
        
        public Road(int left, int right, int cost) {
            this.left = left;
            this.right = right;
            this.cost = cost;
        }
        
        public int compareTo(Road another) {
            return cost - another.cost;
        }
    }
}
0