結果

問題 No.1166 NADA DNA
ユーザー tentententen
提出日時 2021-01-22 08:44:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 676 ms / 3,000 ms
コード長 2,359 bytes
コンパイル時間 3,006 ms
コンパイル使用メモリ 78,928 KB
実行使用メモリ 57,768 KB
最終ジャッジ日時 2024-12-26 02:50:25
合計ジャッジ時間 16,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
41,436 KB
testcase_01 AC 161 ms
41,152 KB
testcase_02 AC 192 ms
41,320 KB
testcase_03 AC 389 ms
46,916 KB
testcase_04 AC 646 ms
57,564 KB
testcase_05 AC 640 ms
57,556 KB
testcase_06 AC 650 ms
57,620 KB
testcase_07 AC 646 ms
57,664 KB
testcase_08 AC 649 ms
57,412 KB
testcase_09 AC 666 ms
57,532 KB
testcase_10 AC 638 ms
57,552 KB
testcase_11 AC 650 ms
57,768 KB
testcase_12 AC 663 ms
57,544 KB
testcase_13 AC 676 ms
57,392 KB
testcase_14 AC 638 ms
57,556 KB
testcase_15 AC 639 ms
57,464 KB
testcase_16 AC 653 ms
57,436 KB
testcase_17 AC 651 ms
57,492 KB
testcase_18 AC 659 ms
57,568 KB
testcase_19 AC 651 ms
57,508 KB
testcase_20 AC 162 ms
41,300 KB
testcase_21 AC 162 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int length = sc.nextInt();
        char[][] all = new char[n][];
        for (int i = 0; i < n; i++) {
            all[i] = sc.next().toCharArray();
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                queue.add(new Path(i, j, getCost(all[i], all[j])));
            }
        }
        UnionFindTree uft = new UnionFindTree(n);
        long cost = 0;
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (!uft.same(p)) {
                uft.unite(p);
                cost += p.value;
            }
        }
        System.out.println(cost);
    }
    
    static int getCost(char[] a1, char[] a2) {
        int cost = 0;
        for (int i = 0; i < a1.length; i++) {
            if (a1[i] != a2[i]) {
                cost++;
            }
        }
        return 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(Path p) {
            return same(p.left, p.right);
        }
        
        public void unite(int x, int y) {
            parents[find(x)] = find(y);
        }
        
        public void unite(Path p) {
            unite(p.left, p.right);
        }
    }
    
    static class Path implements Comparable<Path> {
        int left;
        int right;
        int value;
        
        public Path(int left, int right, int value) {
            this.left = left;
            this.right = right;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}
0