LeetCode //C - 1125. Smallest Sufficient Team
1125. Smallest Sufficient Team
In a project, you have a list of required skills req_skills, and a list of people. The i t h i^{th} ith person people[i] contains a list of skills that the person has.
Consider a sufficient team: a set of people such that for every required skill in req_skills, there is at least one person in the team who has that skill. We can represent these teams by the index of each person.
- For example, team = [0, 1, 3] represents the people with skills people[0], people[1], and people[3].
Return any sufficient team of the smallest possible size, represented by the index of each person. You may return the answer in any order.
It is guaranteed an answer exists.
Example 1:
Input: req_skills = [“java”,“nodejs”,“reactjs”], people = [[“java”],[“nodejs”],[“nodejs”,“reactjs”]]
Output: [0,2]
Example 2:
Input: req_skills = [“algorithms”,“math”,“java”,“reactjs”,“csharp”,“aws”], people = [[“algorithms”,“math”,“java”],[“algorithms”,“math”,“reactjs”],[“java”,“csharp”,“aws”],[“reactjs”,“csharp”],[“csharp”,“math”],[“aws”,“java”]]
Output: [1,2]
Constraints:
- 1 <= req_skills.length <= 16
- 1 <= req_skills[i].length <= 16
- req_skills[i] consists of lowercase English letters.
- All the strings of req_skills are unique.
- 1 <= people.length <= 60
- 0 <= people[i].length <= 16
- 1 <= people[i][j].length <= 16
- people[i][j] consists of lowercase English letters.
- All the strings of people[i] are unique.
- Every skill in people[i] is a skill in req_skills.
- It is guaranteed a sufficient team exists.
From: LeetCode
Link: 1125. Smallest Sufficient Team
Solution:
Ideas:
use bitmask DP. Each skill is one bit. dp[mask] stores the minimum team size to cover mask. Then trace parents back from full.
Code:
/**
* Note: The returned array must be malloced, assume caller calls free().
*/
int* smallestSufficientTeam(char** req_skills, int req_skillsSize,
char*** people, int peopleSize,
int* peopleColSize, int* returnSize) {
int n = req_skillsSize;
int full = (1 << n) - 1;
int total = 1 << n;
int* dp = (int*)malloc(sizeof(int) * total);
int* parentMask = (int*)malloc(sizeof(int) * total);
int* parentPerson = (int*)malloc(sizeof(int) * total);
for (int i = 0; i < total; i++) {
dp[i] = 1000000;
parentMask[i] = -1;
parentPerson[i] = -1;
}
dp[0] = 0;
for (int i = 0; i < peopleSize; i++) {
int skillMask = 0;
for (int j = 0; j < peopleColSize[i]; j++) {
for (int k = 0; k < n; k++) {
if (strcmp(people[i][j], req_skills[k]) == 0) {
skillMask |= (1 << k);
break;
}
}
}
if (skillMask == 0) continue;
for (int mask = 0; mask < total; mask++) {
if (dp[mask] == 1000000) continue;
int newMask = mask | skillMask;
if (dp[mask] + 1 < dp[newMask]) {
dp[newMask] = dp[mask] + 1;
parentMask[newMask] = mask;
parentPerson[newMask] = i;
}
}
}
int size = dp[full];
int* ans = (int*)malloc(sizeof(int) * size);
*returnSize = size;
int mask = full;
int idx = 0;
while (mask != 0) {
ans[idx++] = parentPerson[mask];
mask = parentMask[mask];
}
free(dp);
free(parentMask);
free(parentPerson);
return ans;
}
更多推荐



所有评论(0)