返回介绍

solution / 0200-0299 / 0277.Find the Celebrity / README_EN

发布于 2024-06-17 01:04:02 字数 4793 浏览 0 评论 0 收藏 0

277. Find the Celebrity

中文文档

Description

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. You are only allowed to 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 == 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?

Solutions

Solution 1

# The knows API is already defined for you.
# return a bool, whether a knows b
# def knows(a: int, b: int) -> bool:


class Solution:
  def findCelebrity(self, n: int) -> int:
    ans = 0
    for i in range(1, n):
      if knows(ans, i):
        ans = i
    for i in range(n):
      if ans != i:
        if knows(ans, i) or not knows(i, ans):
          return -1
    return ans
/* The knows API is defined in the parent class Relation.
    boolean knows(int a, int b); */

public class Solution extends Relation {
  public int findCelebrity(int n) {
    int ans = 0;
    for (int i = 1; i < n; ++i) {
      if (knows(ans, i)) {
        ans = i;
      }
    }
    for (int i = 0; i < n; ++i) {
      if (ans != i) {
        if (knows(ans, i) || !knows(i, ans)) {
          return -1;
        }
      }
    }
    return ans;
  }
}
/* The knows API is defined for you.
    bool knows(int a, int b); */

class Solution {
public:
  int findCelebrity(int n) {
    int ans = 0;
    for (int i = 1; i < n; ++i) {
      if (knows(ans, i)) {
        ans = i;
      }
    }
    for (int i = 0; i < n; ++i) {
      if (ans != i) {
        if (knows(ans, i) || !knows(i, ans)) {
          return -1;
        }
      }
    }
    return ans;
  }
};
/**
 * The knows API is already defined for you.
 *   knows := func(a int, b int) bool
 */
func solution(knows func(a int, b int) bool) func(n int) int {
  return func(n int) int {
    ans := 0
    for i := 1; i < n; i++ {
      if knows(ans, i) {
        ans = i
      }
    }
    for i := 0; i < n; i++ {
      if ans != i {
        if knows(ans, i) || !knows(i, ans) {
          return -1
        }
      }
    }
    return ans
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文