[LeetCode] Find the Celebrity


Find the Celebrity 

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 - 1people know him/her but he/she 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 to ask questions like: "Hi, A. Do you know B?" to get information of 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) which tells you whether A knows B. Implement a function int findCelebrity(n), your function should minimize the number of calls to knows.

Note: There will be exactly one celebrity if he/she is in the party. Return the celebrity's label if there is a celebrity in the party. If there is no celebrity, return -1.

雙指針,O(n)時間,O(1)空間。

 1 // Forward declaration of the knows API.
 2 bool knows(int a, int b);
 3 
 4 class Solution {
 5 public:
 6     int findCelebrity(int n) {
 7         int l = 0, r = n - 1;
 8         while (l < r) {
 9             if (knows(l, r)) ++l;
10             else --r;
11         }
12         for (int i = 0; i < n; ++i) if (i != l) {
13             if (knows(l, i) || !knows(i, l)) return -1;
14         }
15         return l;
16     }
17 };

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM