There are two types of persons:
You are given a 0-indexed 2D integer array statements of size n x n that represents the statements made by n people about each other. More specifically, statements[i][j] could be one of the following:
0 which represents a statement made by person i that person j is a bad person.1 which represents a statement made by person i that person j is a good person.2 represents that no statement is made by person i about person j.Additionally, no person ever makes a statement about themselves. Formally, we have that statements[i][i] = 2 for all 0 <= i < n.
Return the maximum number of people who can be good based on the statements made by the n people.
Example 1:
Input: statements = [[2,1,2],[1,2,2],[2,0,2]]
Output: 2
Explanation: Each person makes a single statement.
- Person 0 states that person 1 is good.
- Person 1 states that person 0 is good.
- Person 2 states that person 1 is bad.
Let's take person 2 as the key.
- Assuming that person 2 is a good person:
- Based on the statement made by person 2, person 1 is a bad person.
- Now we know for sure that person 1 is bad and person 2 is good.
- Based on the statement made by person 1, and since person 1 is bad, they could be:
- telling the truth. There will be a contradiction in this case and this assumption is invalid.
- lying. In this case, person 0 is also a bad person and lied in their statement.
- Following that person 2 is a good person, there will be only one good person in the group.
- Assuming that person 2 is a bad person:
- Based on the statement made by person 2, and since person 2 is bad, they could be:
- telling the truth. Following this scenario, person 0 and 1 are both bad as explained before.
- Following that person 2 is bad but told the truth, there will be no good persons in the group.
- lying. In this case person 1 is a good person.
- Since person 1 is a good person, person 0 is also a good person.
- Following that person 2 is bad and lied, there will be two good persons in the group.
We can see that at most 2 persons are good in the best case, so we return 2.
Note that there is more than one way to arrive at this conclusion.
Example 2:
Input: statements = [[2,0],[0,2]]
Output: 1
Explanation: Each person makes a single statement.
- Person 0 states that person 1 is bad.
- Person 1 states that person 0 is bad.
Let's take person 0 as the key.
- Assuming that person 0 is a good person:
- Based on the statement made by person 0, person 1 is a bad person and was lying.
- Following that person 0 is a good person, there will be only one good person in the group.
- Assuming that person 0 is a bad person:
- Based on the statement made by person 0, and since person 0 is bad, they could be:
- telling the truth. Following this scenario, person 0 and 1 are both bad.
- Following that person 0 is bad but told the truth, there will be no good persons in the group.
- lying. In this case person 1 is a good person.
- Following that person 0 is bad and lied, there will be only one good person in the group.
We can see that at most, one person is good in the best case, so we return 1.
Note that there is more than one way to arrive at this conclusion.
Constraints:
n == statements.length == statements[i].length2 <= n <= 15statements[i][j] is either 0, 1, or 2.statements[i][i] == 2When you get asked this question in a real-life environment, it will often be ambiguous (especially at FAANG). Make sure to ask these questions in that case:
The brute force strategy for this problem means trying every possible combination of who could be a good person and who could be a bad person. We then check if each of those combinations is consistent with the statements given to us.
Here's how the algorithm would work step-by-step:
def maximum_good_people_brute_force(statements):
number_of_people = len(statements)
maximum_good_people = 0
for i in range(2 ** number_of_people):
# Create a possible assignment of good/bad people based on the bitmask
people_assignments = []
for j in range(number_of_people):
if (i >> j) & 1:
people_assignments.append(1)
else:
people_assignments.append(0)
is_consistent = True
# Check if the statements are consistent with the assignments
for person_index in range(number_of_people):
if people_assignments[person_index] == 1:
for target_index in range(number_of_people):
statement = statements[person_index][target_index]
if statement == 2:
continue
# Validate the statement against the assignment
if statement != people_assignments[target_index]:
is_consistent = False
break
if not is_consistent:
break
# If statements are consistent, count number of good people
if is_consistent:
# Count how many people are labeled as good in this assignment
current_good_people = sum(people_assignments)
# Keep track of the maximum number of good people seen so far
maximum_good_people = max(maximum_good_people, current_good_people)
return maximum_good_peopleThe core idea is to explore possible scenarios by assuming different people are good or bad and checking if those assumptions are consistent with all the statements. We aim to find the largest group of good people that doesn't lead to contradictions in the provided statements.
Here's how the algorithm would work step-by-step:
def maximum_good_people(statements):
number_of_people = len(statements)
maximum_good = 0
# Iterate through all possible scenarios of good/bad people.
for i in range(2 ** number_of_people):
good_count = 0
is_valid = True
people_types = []
for person_index in range(number_of_people):
if (i >> person_index) & 1:
people_types.append(1) # 1 represents good
good_count += 1
else:
people_types.append(0) # 0 represents bad
# Check if the current scenario is valid
for person_index in range(number_of_people):
statement_index = 0
for statement in statements[person_index]:
#If the person is good, their statement must be true.
if people_types[person_index] == 1:
if statement != 2:
if (statement != people_types[statement_index]):
is_valid = False
break
#If the person is bad, check if their statement causes contradiction.
else:
if statement != 2:
pass
statement_index += 1
if not is_valid:
break
if is_valid:
#Update the maximum number of good people found.
maximum_good = max(maximum_good, good_count)
return maximum_good| Case | How to Handle |
|---|---|
| Null or empty `statements` array | Return 0 since there are no people and thus no consistent group. |
| Single person scenario (n=1) | The person can always be good, so return 1. |
| All statements are 'unknown' (all values are 2) | All people can be good, so return n. |
| No consistent group exists (conflicting statements) | The algorithm should explore all possibilities and return 0 if none are consistent. |
| Maximum number of people (n is large, near limit) | The algorithm should have a time complexity that makes this manageable, potentially exponential but optimized. |
| Statements are highly biased (mostly 0s or mostly 1s) | The algorithm should handle unbalanced distributions of statements without being significantly affected. |
| Integer overflow if calculating number of 'good' people using multiplication. | The code must use appropriate data types and techniques (e.g., bit manipulation) to avoid integer overflow. |
| Algorithm's recursion depth exceeds limits for large n. | The solution should use iteration or memoization/dynamic programming to avoid excessive recursion depth. |