結果

問題 No.1390 Get together
ユーザー ks2mks2m
提出日時 2021-02-12 21:55:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 874 ms / 2,000 ms
コード長 1,816 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 79,036 KB
実行使用メモリ 74,732 KB
最終ジャッジ日時 2024-07-19 21:13:03
合計ジャッジ時間 16,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,784 KB
testcase_01 AC 48 ms
36,616 KB
testcase_02 AC 50 ms
36,620 KB
testcase_03 AC 131 ms
41,000 KB
testcase_04 AC 136 ms
40,876 KB
testcase_05 AC 132 ms
41,192 KB
testcase_06 AC 130 ms
40,844 KB
testcase_07 AC 128 ms
40,200 KB
testcase_08 AC 111 ms
40,256 KB
testcase_09 AC 135 ms
40,836 KB
testcase_10 AC 48 ms
36,732 KB
testcase_11 AC 50 ms
36,728 KB
testcase_12 AC 49 ms
37,028 KB
testcase_13 AC 50 ms
37,036 KB
testcase_14 AC 50 ms
37,120 KB
testcase_15 AC 50 ms
37,000 KB
testcase_16 AC 470 ms
53,432 KB
testcase_17 AC 770 ms
74,364 KB
testcase_18 AC 481 ms
52,512 KB
testcase_19 AC 874 ms
74,436 KB
testcase_20 AC 817 ms
74,428 KB
testcase_21 AC 791 ms
74,308 KB
testcase_22 AC 629 ms
64,884 KB
testcase_23 AC 616 ms
65,332 KB
testcase_24 AC 627 ms
65,796 KB
testcase_25 AC 793 ms
73,924 KB
testcase_26 AC 801 ms
74,508 KB
testcase_27 AC 824 ms
74,396 KB
testcase_28 AC 824 ms
74,732 KB
testcase_29 AC 851 ms
74,612 KB
testcase_30 AC 808 ms
74,432 KB
testcase_31 AC 813 ms
74,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		Map<Integer, List<Integer>> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
	 		sa = br.readLine().split(" ");
			int b = Integer.parseInt(sa[0]) - 1;
			int c = Integer.parseInt(sa[1]) - 1;
			List<Integer> list = map.get(c);
			if (list == null) {
				list = new ArrayList<>();
				map.put(c, list);
			}
			list.add(b);
		}
		br.close();

		UnionFind uf = new UnionFind(m);
		for (Integer key : map.keySet()) {
			List<Integer> list = map.get(key);
			if (list.size() > 1) {
				int f = list.get(0);
				for (int i = 1; i < list.size(); i++) {
					uf.union(f, list.get(i));
				}
			}
		}
		System.out.println(m - uf.num);
	}

	static class UnionFind {
		int[] parent, size;
		int num = 0; // 連結成分の数

		UnionFind(int n) {
			parent = new int[n];
			size = new int[n];
			num = n;
			for (int i = 0; i < n; i++) {
				parent[i] = i;
				size[i] = 1;
			}
		}

		void union(int x, int y) {
			int px = find(x);
			int py = find(y);
			if (px != py) {
				parent[px] = py;
				size[py] += size[px];
				num--;
			}
		}

		int find(int x) {
			if (parent[x] == x) {
				return x;
			}
			parent[x] = find(parent[x]);
			return parent[x];
		}

		/**
		 * xとyが同一連結成分か
		 */
		boolean same(int x, int y) {
			return find(x) == find(y);
		}

		/**
		 * xを含む連結成分のサイズ
		 */
		int size(int x) {
			return size[find(x)];
		}
	}
}
0