import java.io.*; /** * ClassName: Code * pACKAGE: UnionLookUpSet * Description: * 并查集相关代码的实现 * 平均时间复杂度:o(1) * @Author hz * @Create: 2023/10/4 - 16:47 * @Version :v1.0 */ public class Main { public static int MAX=1000001; public static int[]father=new int[MAX]; public stati...