卖萌的弱渣

I am stupid, I am hungry.

First Bad Version

You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

Suppose you have n versions [1, 2, …, n] and you want to find out the first bad one, which causes all the following ones to be bad.

You are given an API bool isBadVersion(version) which will return whether version is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

Solution

  • 二分查找
(First-Bad-Version.py) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# The isBadVersion API is already defined for you.
# @param version, an integer
# @return a bool
# def isBadVersion(version):

class Solution(object):
    def firstBadVersion(self, n):
        """
        :type n: int
        :rtype: int
        """
        l = 0
        r = n
        while l<=r:
            m = (l+r)/2
            if isBadVersion(m):
                r = m-1
            else:
                l = m+1
        return l
  • Java solution:
  • 需要用l+(r-l)/2而不是 (l+r)/2. 后者会超过int上线
(First-Bad-Version.java) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* The isBadVersion API is defined in the parent class VersionControl.
      boolean isBadVersion(int version); */

public class Solution extends VersionControl {
    public int firstBadVersion(int n) {
        int l = 1;
        int r = n;
        while (l<=r){
            int m = l+(r-l)/2;
            if (isBadVersion(m) == true)
                r = m-1;
            else
                l = m+1;

        }
        return l;
    }
}