第一题绩效互评人员分配
二分图判断模板,可以去看其他博客学习一下
#include <bits/stdc++.h>
using namespace std;vector<int> GoodRelationships[105];
int color[105]; // 记录每个节点的颜色,0表示未染色,1和2表示不同的组
bool is_bipartite = true; // 判断是否为二分图// 深度优先搜索函数,u为当前节点,c为当前颜色(组)
void dfs(int u, int c) {if (!is_bipartite) return;color[u] = c;for (int v : GoodRelationships[u]) {if (color[v] == c) { // 如果相邻节点颜色相同,说明无法分组is_bipartite = false;return;}if (color[v] == 0) { // 如果相邻节点未染色,则染上相反颜色dfs(v, 3 - c);}}
}int main() {int n; // n 表示员工数量cin >> n;cin.ignore(); // 忽