結果

問題 No.748 yuki国のお財布事情
ユーザー htensaihtensai
提出日時 2020-01-30 18:12:03
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,961 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 62,440 KB
最終ジャッジ日時 2023-10-14 08:37:20
合計ジャッジ時間 10,516 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,468 KB
testcase_01 AC 43 ms
50,120 KB
testcase_02 AC 44 ms
49,304 KB
testcase_03 RE -
testcase_04 AC 43 ms
49,528 KB
testcase_05 AC 43 ms
49,296 KB
testcase_06 AC 44 ms
49,356 KB
testcase_07 AC 44 ms
49,816 KB
testcase_08 AC 44 ms
49,460 KB
testcase_09 AC 44 ms
49,660 KB
testcase_10 AC 44 ms
49,424 KB
testcase_11 AC 44 ms
49,464 KB
testcase_12 AC 44 ms
49,348 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 256 ms
57,552 KB
testcase_17 WA -
testcase_18 AC 483 ms
60,920 KB
testcase_19 AC 464 ms
60,104 KB
testcase_20 AC 430 ms
60,796 KB
testcase_21 AC 477 ms
60,360 KB
testcase_22 AC 43 ms
49,296 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 509 ms
60,244 KB
testcase_27 WA -
testcase_28 AC 327 ms
59,140 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