Skip to content

Latest commit

 

History

History
 
 

277. Find the Celebrity

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Suppose you are at a party with n people labeled from 0 to n - 1 and among them, there may exist one celebrity. The definition of a celebrity is that all the other n - 1 people know the celebrity, but the celebrity does not know any of them.

Now you want to find out who the celebrity is or verify that there is not one. The only thing you are allowed to do is ask questions like: "Hi, A. Do you know B?" to get information about whether A knows B. You need to find out the celebrity (or verify there is not one) by asking as few questions as possible (in the asymptotic sense).

You are given a helper function bool knows(a, b) that tells you whether A knows B. Implement a function int findCelebrity(n). There will be exactly one celebrity if they are at the party.

Return the celebrity's label if there is a celebrity at the party. If there is no celebrity, return -1.

 

Example 1:

Input: graph = [[1,1,0],[0,1,0],[1,1,1]]
Output: 1
Explanation: There are three persons labeled with 0, 1 and 2. graph[i][j] = 1 means person i knows person j, otherwise graph[i][j] = 0 means person i does not know person j. The celebrity is the person labeled as 1 because both 0 and 2 know him but 1 does not know anybody.

Example 2:

Input: graph = [[1,0,1],[1,1,0],[0,1,1]]
Output: -1
Explanation: There is no celebrity.

 

Constraints:

  • n == graph.length
  • n == graph[i].length
  • 2 <= n <= 100
  • graph[i][j] is 0 or 1.
  • graph[i][i] == 1

 

Follow up: If the maximum number of allowed calls to the API knows is 3 * n, could you find a solution without exceeding the maximum number of calls?

Companies:
Amazon, LinkedIn, Pinterest, Facebook, Microsoft, Apple

Related Topics:
Two Pointers, Greedy, Graph, Interactive

Similar Questions:

Solution 1.

There is at most one celebrity.

Each know(i, j) can help us eliminate a node. If i knows j, i must not be celebrity, and we should try j instead. If i doesn't know j, j must not be celebrity.

// OJ: https://leetcode.com/problems/find-the-celebrity/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(N)
class Solution {
public:
    int findCelebrity(int n) {
        vector<int> good(n, -1); // -1 unvisited, 0 not celebrity, 1 celebrity
        int ans = -1;
        function<bool(int)> dfs = [&](int i) -> bool {
            if (good[i] != -1) return good[i];
            for (int j = 0; j < n && good[i] == -1; ++j) { // check rule: I don't know anyone
                if (i == j) continue;
                if (knows(i, j)) { // If `i` knows any `j`, `i` is not the celebrity, try `j` instead
                    good[i] = 0;
                    if (dfs(j)) return true;
                } else { // If `i` doesn't know `j`, `j` is not the celebrity
                    good[j] = 0;
                }
            }
            if (good[i] == 0) return false;
            for (int j = 0; j < n && good[i] == -1; ++j) { // check rule: anyone knows me
                if (i == j) continue;
                if (!knows(j, i)) good[i] = 0;
            }
            if (good[i]) ans = i;
            return true;
        };
        for (int i = 0; i < n; ++i) {
            if (good[i] != -1) continue;
            if (dfs(i)) return ans;
        }
        return -1;
    }
};