Problem:
In a town, there are n people labeled from 1 to n. There is a rumor that one of these people is secretly the town judge.
If the town judge exists, then:
- The town judge trusts nobody.
- Everybody (except for the town judge) trusts the town judge.
- There is exactly one person that satisfies properties 1 and 2.
You are given an array trust where trust[i] = [ai, bi] representing that the person labeled ai trusts the person labeled bi. If a trust relationship does not exist in trust array, then such a trust relationship does not exist.
Return the label of the town judge if the town judge exists and can be identified, or return -1 otherwise.
Example 1:
Input: n = 2, trust = 1,2 Output: 2
Example 2:
Input: n = 3, trust = [[1,3],[2,3]] Output: 3
Example 3:
Input: n = 3, trust = [[1,3],[2,3],[3,1]] Output: -1
Constraints:
1 <= n <= 10000 <= trust.length <= 104trust[i].length == 2- All the pairs of
trustare unique. ai != bi1 <= ai, bi <= n
Problem Analysis:
- High-level Strategy:
- The solution first initializes a list
trackerwithnelements, all initialized to zero. This list will keep track of the net trust scores for each person. - Then, it iterates through the list of trusts. For each pair
(a, b)intrust, it decrements the trust score ofa-1and increments the trust score ofb-1. - Finally, it iterates through the
trackerlist and checks if any person has a trust score ofn-1. If found, it returns the index of that person plus one (to match the 1-based indexing used in the problem statement). If no such person is found, it returns-1.
- The solution first initializes a list
- Complexity:
- Time Complexity:
- The loop that iterates through the list of trusts runs in O(E), where E is the number of trust relationships.
- The loop that iterates through the
trackerlist runs in O(N), where N is the number of people. - Thus, the overall time complexity is O(N + E).
- Space Complexity:
- The space complexity is O(N) because of the
trackerlist.
- The space complexity is O(N) because of the
- Time Complexity:
Solutions:
class Solution:
def findJudge(self, n: int, trust: List[List[int]]) -> int:
tracker = [0] * n
for a,b in trust:
tracker[a-1] -=1
tracker[b-1] +=1
# if town judge, trust == n-1, should match
for i in range(0, n):
if tracker[i] == n-1:
return i+1
return -1
Walter Teng.