Smallest Sufficient Team - Problem

In a project, you have a list of required skills req_skills, and a list of people. The i-th 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.

Input & Output

Example 1 — Basic Team Formation
$ Input: req_skills = ["java","nodejs","reactjs"], people = [["java"],["nodejs"],["nodejs","reactjs"]]
Output: [0,2]
💡 Note: Person 0 has java, Person 2 has nodejs and reactjs. Together they cover all required skills [java, nodejs, reactjs]
Example 2 — Minimal Team
$ 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]
💡 Note: Person 1 covers [algorithms,math,reactjs] and Person 2 covers [java,csharp,aws]. Together they have all 6 skills.
Example 3 — Single Person Team
$ Input: req_skills = ["cooking"], people = [["cooking","baking"],["art"]]
Output: [0]
💡 Note: Only Person 0 has the cooking skill, so they form the minimal sufficient team

Constraints

  • 1 ≤ req_skills.length ≤ 16
  • 1 ≤ people.length ≤ 60
  • 1 ≤ people[i].length, req_skills[i].length, people[i][j].length ≤ 16
  • Elements of req_skills are distinct
  • req_skills[i] and people[i][j] consist of lowercase English letters only
  • Every skill in people[i] is also in req_skills
  • It is guaranteed an answer exists

Visualization

Tap to expand
Smallest Sufficient Team - DP Approach INPUT Required Skills: java nodejs reactjs Bitmask: 111 (all 3 skills) People: 0 java mask: 001 1 nodejs mask: 010 2 nodejs reactjs 011 Goal: Cover mask 111 with minimum people ALGORITHM STEPS 1 Initialize DP dp[0] = [] (empty team) dp[mask] = min team for mask 2 Process Person 0 0 | 001 = 001 dp[001] = [0] 3 Process Person 1 0 | 010 = 010, dp[010]=[1] 001|010=011, dp[011]=[0,1] 4 Process Person 2 0 | 011 = 011, dp[011]=[2] 001|011=111, dp[111]=[0,2] DP State Table mask 000: [] mask 001: [0] mask 010: [1] mask 011: [2] (better!) mask 111: [0,2] GOAL! FINAL RESULT Optimal Team Coverage: java nodejs reactjs Person 0 Person 2 Output Array: [0, 2] Team size: 2 (minimum) Skills covered: 3/3 OK Person 0: java Person 2: nodejs, reactjs Key Insight: Use bitmask DP where each state represents covered skills. For each person, try adding them to existing teams. dp[new_mask] = min team achieving new_mask. Time: O(2^n * m) where n = skills count (max 16), m = people count. Greedy fails; DP finds global optimum. TutorialsPoint - Smallest Sufficient Team | Dynamic Programming with Bitmask
Asked in
Google 25 Amazon 18 Microsoft 15 Facebook 12
40.8K Views
Medium Frequency
~35 min Avg. Time
1.5K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen