首页 > 其他 > 详细

leetcode 890. Possible Bipartition

时间:2018-08-12 13:00:04      阅读:137      评论:0      收藏:0      [点我收藏+]

Given a set of N people (numbered 1, 2, ..., N), we would like to split everyone into two groups of any size.

Each person may dislike some other people, and they should not go into the same group.

Formally, if dislikes[i] = [a, b], it means it is not allowed to put the people numbered a and b into the same group.

Return true if and only if it is possible to split everyone into two groups in this way.

Example 1:

Input: N = 4, dislikes = [[1,2],[1,3],[2,4]]
Output: true
Explanation: group1 [1,4], group2 [2,3]
Example 2:

Input: N = 3, dislikes = [[1,2],[1,3],[2,3]]
Output: false
Example 3:

Input: N = 5, dislikes = [[1,2],[2,3],[3,4],[4,5],[1,5]]
Output: false
Note:

1 <= N <= 2000
0 <= dislikes.length <= 10000
1 <= dislikes[i][j] <= N
dislikes[i][0] < dislikes[i][1]
There does not exist i != j for which dislikes[i] == dislikes[j].

思路:二分图染色

class Solution {
public:
    vector<int>G[2100];
    int color[2100];
    //memset(color, -1, sizeof (color));
    int bfs() {
        queue<int>q;
        q.push(1);
        color[1] = 1;
        while(!q.empty()) {
            int v1 = q.front();
            q.pop();
            for(int i = 0; i < G[v1].size(); i++) {
                int v2 = G[v1][i];
                if(color[v2] == -1) {
                    color[v2] = -color[v1];
                    q.push(v2);
                }
                else if(color[v1] == color[v2])
                    return 0;
            }
        }
        return 1;
    }
    bool possibleBipartition(int N, vector<vector<int>>& dislikes) {
        for (int i = 0; i < dislikes.size(); ++i) {
            vector<int> x = dislikes[i];
            //cout << x[0]  << " " <<x[1] << endl;
            G[x[0]].push_back(x[1]);
            G[x[1]].push_back(x[0]);
        }
        for (int i = 0; i <= 2000; ++i)color[i] = -1;
        return bfs();
    }
};

leetcode 890. Possible Bipartition

原文:https://www.cnblogs.com/pk28/p/9462393.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!