結果

問題 No.1293 2種類の道路
ユーザー tentententen
提出日時 2023-04-11 19:41:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 3,456 bytes
コンパイル時間 3,053 ms
コンパイル使用メモリ 98,448 KB
実行使用メモリ 86,648 KB
最終ジャッジ日時 2024-10-07 13:57:20
合計ジャッジ時間 11,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,196 KB
testcase_01 AC 53 ms
50,244 KB
testcase_02 AC 52 ms
50,144 KB
testcase_03 AC 55 ms
50,432 KB
testcase_04 AC 55 ms
50,024 KB
testcase_05 AC 52 ms
50,340 KB
testcase_06 AC 54 ms
50,260 KB
testcase_07 AC 54 ms
50,124 KB
testcase_08 AC 54 ms
50,452 KB
testcase_09 AC 462 ms
63,404 KB
testcase_10 AC 473 ms
63,316 KB
testcase_11 AC 455 ms
63,852 KB
testcase_12 AC 480 ms
63,568 KB
testcase_13 AC 477 ms
63,356 KB
testcase_14 AC 417 ms
67,472 KB
testcase_15 AC 408 ms
67,116 KB
testcase_16 AC 481 ms
68,336 KB
testcase_17 AC 490 ms
68,564 KB
testcase_18 AC 448 ms
80,752 KB
testcase_19 AC 497 ms
86,476 KB
testcase_20 AC 485 ms
86,648 KB
testcase_21 AC 311 ms
58,748 KB
testcase_22 AC 314 ms
58,368 KB
testcase_23 AC 384 ms
58,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int d = sc.nextInt();
        int w = sc.nextInt();
        UnionFindTree drive = new UnionFindTree(n);
        for (int i = 0; i < d; i++) {
            drive.unite(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        UnionFindTree walk = new UnionFindTree(n);
        for (int i = 0; i < w; i++) {
            walk.unite(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        HashMap<Integer, HashSet<Integer>> bridge = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = drive.find(i);
            if (!bridge.containsKey(x)) {
                bridge.put(x, new HashSet<>());
            }
            bridge.get(x).add(walk.find(i));
        }
        HashMap<Integer, Integer> counts = new HashMap<>();
        long ans = 0;
        for (int x : bridge.keySet()) {
            long count = 0;
            for (int y : bridge.get(x)) {
                count += walk.getCount(y);
            }
            ans += (count - 1) * drive.getCount(x);
        }
        System.out.println(ans);
    }
    
    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 (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 void unite(int x, int y) {
            int xx = find(x);
            int yy = find(y);
            if (xx == yy) {
                return;
            }
            parents[xx] = yy;
            counts[yy] += counts[xx];
        }
        
        public int getCount(int x) {
            return counts[find(x)];
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0