結果

問題 No.748 yuki国のお財布事情
ユーザー htensaihtensai
提出日時 2020-01-30 18:12:03
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,961 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 78,904 KB
実行使用メモリ 60,748 KB
最終ジャッジ日時 2024-09-16 03:45:20
合計ジャッジ時間 9,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,000 KB
testcase_01 AC 47 ms
37,100 KB
testcase_02 AC 49 ms
36,812 KB
testcase_03 RE -
testcase_04 AC 48 ms
36,400 KB
testcase_05 AC 46 ms
36,864 KB
testcase_06 AC 46 ms
36,956 KB
testcase_07 AC 45 ms
36,456 KB
testcase_08 AC 47 ms
36,644 KB
testcase_09 AC 48 ms
37,100 KB
testcase_10 AC 47 ms
36,884 KB
testcase_11 AC 46 ms
36,876 KB
testcase_12 AC 48 ms
36,416 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 254 ms
46,536 KB
testcase_17 WA -
testcase_18 AC 424 ms
50,480 KB
testcase_19 AC 412 ms
49,456 KB
testcase_20 AC 370 ms
49,520 KB
testcase_21 AC 423 ms
49,692 KB
testcase_22 AC 45 ms
36,560 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 465 ms
49,520 KB
testcase_27 WA -
testcase_28 AC 287 ms
48,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int[] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 3);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        int k = Integer.parseInt(first[2]);
        Route[] routes = new Route[m];
        long total = 0;
        for (int i = 0; i < m; i++) {
            routes[i] = new Route(br.readLine());
            total += routes[i].cost;
        }
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < k; i++) {
            int idx = Integer.parseInt(br.readLine()) - 1;
            uft.unite(routes[idx]);
            total -= routes[idx].cost;
            routes[idx].cost = Integer.MAX_VALUE;
        }
        Arrays.sort(routes);
        for (int i = 0; i < n && !uft.isFull(); i++) {
            if (!uft.same(routes[i])) {
                total -= routes[i].cost;
                uft.unite(routes[i]);
            }
        }
        System.out.println(total);
    }
    
    static class UnionFindTree {
        int[] parents;
        int[] counts;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            counts = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
                counts[i] = 1;
            }
        }
        
        public int find(int x) {
            if (parents[x] == 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(Route r) {
            return same(r.left, r.right);
        }
        
        public void unite(int x, int y) {
            int xx = find(x);
            int yy = find(y);
            if (xx == yy) {
                return;
            } else if (xx > yy) {
                parents[xx] = yy;
                counts[yy] += parents[xx];
            } else {
                parents[yy] = xx;
                counts[xx] += parents[yy];
            }
        }
        
        public void unite(Route r) {
            unite(r.left, r.right);
        }
        
        public boolean isFull() {
            return counts[0] == counts.length;
        }
    }
    
    static class Route implements Comparable<Route> {
        int left;
        int right;
        int cost;
        
        public Route(String s) {
            String[] arr = s.split(" ", 3);
            left = Integer.parseInt(arr[0]) - 1;
            right = Integer.parseInt(arr[1]) - 1;
            cost = Integer.parseInt(arr[2]);
        }
        
        public int compareTo(Route another) {
            return cost - another.cost;
        }
    }
}
0