ural 1106. Two Teams 二分圖染色

來源:互聯網
上載者:User

描述:有n(n<=100)個人,每個人有一個或多個朋友(朋友關係是相互的)。將其分成兩組,使每一組都有朋友在另一個組。

#include <cstdio>#include <iostream>#include <cstring>#include <vector>using namespace std;const int M = 100 + 10;int color[M], vis[M];//color[i]表示結點i的顏色,1表示黑色,2白色vector<int> G[M];void dfs(int u){vis[u] = 1;for (int i = 0; i < G[u].size(); ++i){int v = G[u][i];if (!vis[v]){color[v] = 3 - color[u];dfs(v);}}}int main(){int n, t;scanf("%d", &n);for (int i = 1; i <= n; ++i)while (scanf("%d", &t) && t){G[i].push_back(t);}memset(vis, 0, sizeof(vis));memset(color, 0, sizeof(color));for (int i = 1; i <= n; ++i)if (!vis[i]){color[i]=1;//每個新連通分量起始點都要設定為1dfs(i);}int sum = 0;for (int i = 1; i <= n; ++i)if (color[i] == 1)++sum;printf("%d\n", sum);for (int i = 1; i <= n; ++i)if (color[i] == 1)printf("%d ", i);return 0;}
還有一種方法差不多,看著像dfs實際不是,本題只需要對每個結點的鄰接點染色就行,可以不用遞迴。

#include <cstdio>#include <iostream>#include <cstring>#include <vector>using namespace std;const int M = 100 + 10;int color[M], vis[M];vector<int> G[M];void coloring(int u){vis[u] = 1;color[u] = 1;for (int i = 0; i < G[u].size(); ++i){int v = G[u][i];if (!vis[v])color[v] = 3 - color[u];vis[v] = 1;}}int main(){int n, t;scanf("%d", &n);for (int i = 1; i <= n; ++i)while (scanf("%d", &t) && t){G[i].push_back(t);}memset(vis, 0, sizeof(vis));memset(color, 0, sizeof(color));for (int i = 1; i <= n; ++i)if (!vis[i])coloring(i);int sum = 0;for (int i = 1; i <= n; ++i)if (color[i] == 1)++sum;printf("%d\n", sum);for (int i = 1; i <= n; ++i)if (color[i] == 1)printf("%d ", i);return 0;}




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.