前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >挑战程序竞赛系列(10):2.4并查集

挑战程序竞赛系列(10):2.4并查集

作者头像
用户1147447
发布2019-05-26 09:52:18
2810
发布2019-05-26 09:52:18
举报
文章被收录于专栏:机器学习入门机器学习入门

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://cloud.tencent.com/developer/article/1434803

挑战程序竞赛系列(10):2.4并查集

详细代码可以fork下Github上leetcode项目,不定期更新。

练习题如下:

POJ 2236: Wireless Network

写个Union,在距离范围内的电脑可以认为是同属于一个集合,进行合并。当然还需要注意电脑当前的状态是否修复,如果未修复,即使在指定距离内,也不能合并。

即使做了些状态记录,Java代码还是慢啊。

代码如下:

代码语言:javascript
复制
public class SolutionDay15_L2236 {

    static class Union{
        int[] id;
        int[] sz;

        public Union(int size){
            id = new int[size];
            sz = new int[size];

            for (int i = 0; i < size; ++i){
                id[i] = i;
                sz[i] = 1;
            }
        }

        public void union(int i, int j){
            int p = find(i);
            int q = find(j);

            if (p == q) return;

            if (sz[p] < sz[q]){
                id[p] = q;
                sz[q] += sz[p];
            }
            else{
                id[q] = p;
                sz[p] += sz[q];
            }
        }

        public int find(int i){
            while (id[i] != i){
                i = id[i];
            }
            return i;
        }

        public boolean connect(int i, int j){
            return find(i) == find(j);
        }
    }

    private static boolean distance(int[] c1, int[] c2, int d){
        int x = c1[0] - c2[0];
        int y = c1[1] - c2[1];
        return (x * x + y * y) <= d * d;
    }

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String[] n = in.nextLine().trim().split(" ");

        int N = Integer.parseInt(n[0]);
        int D = Integer.parseInt(n[1]);

        boolean[] status = new boolean[N];
        boolean[][] distance = new boolean[N][N];
        Union union = new Union(N);

        int[][] coord = new int[N][2];
        for (int i = 0; i < N; ++i){
            n = in.nextLine().trim().split(" ");
            coord[i][0] = Integer.parseInt(n[0]);
            coord[i][1] = Integer.parseInt(n[1]);
        }

        for (int i = 0; i < N; ++i){
            for (int j = i + 1; j < N; ++j){
                if(distance(coord[i], coord[j], D)){
                    distance[i][j] = true;
                    distance[j][i] = true;
                }
            }
        }

        while (in.hasNextLine()){
            String[] operates = in.nextLine().trim().split(" ");
            if (operates[0].equals("O")){
                int c = Integer.parseInt(operates[1]) - 1;
                status[c] = true;
                for (int j = 0; j < N; ++j){
                    if (j == c) continue;
                    if (status[j] && distance[j][c])
                        union.union(c, j);
                }
            }
            if (operates[0].equals("S")){
                int c1 = Integer.parseInt(operates[1]) - 1;
                int c2 = Integer.parseInt(operates[2]) - 1;
                System.out.println(union.connect(c1, c2) ? "SUCCESS" : "FAIL");
            }
        }
        in.close();
    }
}

POJ 1703: Find them, Catch them

思路:

copy一团罪犯,敌人的敌人是我们的朋友。

代码如下:

代码语言:javascript
复制
public class SolutionDay15_L1703 {

    static class Union{
        int[] id;
        int[] sz;

        public Union(int size){
            id = new int[size];
            sz = new int[size];
            for (int i = 0; i < size; ++i){
                id[i] = i;
                sz[i] = 1;
            }
        }

        public int find(int i){
            while (id[i] != i){
                i = id[i];
            }
            return i;
        }

        public boolean same(int i, int j){
            return find(i) == find(j);
        }

        public void union(int i, int j){
            int p = find(i);
            int q = find(j);

            if (p == q) return;
            if (sz[p] < sz[q]){
                id[p] = q;
                sz[q] += sz[p];
            }
            else{
                id[q] = p;
                sz[p] += sz[q];
            }
        }
    }
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int T = in.nextInt();
        for (int i = 0; i < T; ++i){
            int N = in.nextInt();
            int M = in.nextInt();
            Union u = new Union(2 * N);
            for (int j = 0; j < M; ++j){
                String opera = in.next();
                int c1 = in.nextInt() - 1;
                int c2 = in.nextInt() - 1;
                if (opera.equals("A")){
                    if (u.same(c1, c2)){
                        System.out.println("In the same gang.");
                    }
                    else if (u.same(c1, c2 + N)){
                        System.out.println("In different gangs.");
                    }
                    else{
                        System.out.println("Not sure yet.");
                    }
                }
                else{
                    u.union(c1, c2 + N);
                    u.union(c1 + N, c2);
                }
            }
        }
        in.close();
    }
}

AOJ 2170: Marked Ancestor

非常easy,dfs找父结点即可,如果mark,则把该结点的父亲改为自己即可。

代码如下:

代码语言:javascript
复制
    public static int find(int i){
        while (i != id[i]) i = id[i];
        return i;
    }

    static int[] id;
    public static void main(String[] args) throws IOException {
        Scanner in = new Scanner(System.in);
        while (true){
            int N = in.nextInt();
            int Q = in.nextInt();
            if (N == 0 && Q == 0) break;
            id = new int[N];

            for (int i = 1; i < N; ++i){
                int p = in.nextInt() - 1;
                id[i] = p;
            }
            long sum = 0;
            for (int i = 0; i < Q; ++i){
                String opera = in.next();
                int c = in.nextInt() - 1;
                if (opera.equals("Q")){
                    sum += (find(c) + 1);
                }
                else{
                    id[c] = c;
                }
            }
            System.out.println(sum);
        }

    }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017年06月15日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 挑战程序竞赛系列(10):2.4并查集
    • POJ 2236: Wireless Network
      • POJ 1703: Find them, Catch them
        • AOJ 2170: Marked Ancestor
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档