#P2285. 第1题-绩效互评人员分配

第1题-绩效互评人员分配

题目内容

公司组织绩效互评,为了避免有同学或者同团队的人互相打高分,需要将员工分成两组分别打分。给定一个整数nn和一个数组GoodRelationShips[][]GoodRelationShips[][],其中,nn表示人数,数组GoodRelationShips[][]GoodRelationShips[][]是一个邻接表,GoodRelationShips[i]GoodRelationShips[i]的元素[a,b,ca,b,c]代表员工ii和员工abca,b,c是同学或者同团队。

请将这nn个人分成两组,使其每组不再有同学或者同团队的人。

GoodRelationShips[][]GoodRelationShips[][]的长度范围为[1,1001,100]。

GoodRelationShips[i]GoodRelationShips[i]中的元素的范围为[1,GoodRelationShips.length11,GoodRelationShips.length-1]。