首页 > 网易9.12笔试 第四题的二分图匹配,为啥我0%
头像
这位少年十分坚定
编辑于 2020-09-12 17:18
+ 关注

网易9.12笔试 第四题的二分图匹配,为啥我0%




public class Main {
    public static int m = 0, n = 0;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextLine().split(" ").length;
        int b = sc.nextLine().split(" ").length;
        n = a + b;
        m = a + b;
        int edges = Integer.valueOf(sc.nextLine());
        int[][] map = new int[n+1][m+1];

        for (int i = 0; i < edges; i++) {
            String[] line = sc.nextLine().split(" ");
            map[Integer.valueOf(line[0])][Integer.valueOf(line[1])] = 1;
        }
        System.out.println(getMaxMun(map));
    }

    private static int getMaxMun(int[][] map) {
        int count = 0;
        int[] linked = new int[m];
        for (int i = 0; i < m; i++) {
            linked[i] = -1;
        }
        for (int i = 0; i < n; i++) {
            boolean[] used = new boolean[m];
            if (dfs(map, used, linked, i))
                count++;
        }
        return count;
    }

    private static boolean dfs(int[][] map, boolean[] used, int[] linded, int start) {
        for (int i = 0; i < m; i++) {
            if (used[i] == false && map[start][i] == 1) {
                used[i] = true;
                if (linded[i] == -1 || dfs(map, used, linded, linded[i])) {
                    linded[i] = start;
                    return true;
                }
            }
        }
        return false;
    }
}


更多模拟面试

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐