leetcode_cpp/search/278.cpp
2021-12-22 13:23:43 +08:00

60 lines
1.4 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* @Description:
* @Version: 1.0
* @Autor: zhuyijun
* @Date: 2021-12-21 14:17:41
* @LastEditTime: 2021-12-21 14:29:26
*/
/*
你是产品经理,目前正在带领一个团队开发新的产品。不幸的是,你的产品的最新版本没有通过质量检测。由于每个版本都是基于之前的版本开发的,所以错误的版本之后的所有版本都是错的。
假设你有 n 个版本 [1, 2, ...,
n],你想找出导致之后所有版本出错的第一个错误的版本。
你可以通过调用 bool isBadVersion(version) 接口来判断版本号 version
是否在单元测试中出错。实现一个函数来查找第一个错误的版本。你应该尽量减少对调用
API 的次数。
示例 1
输入n = 5, bad = 4
输出4
解释:
调用 isBadVersion(3) -> false
调用 isBadVersion(5) -> true
调用 isBadVersion(4) -> true
所以4 是第一个错误的版本。
示例 2
输入n = 1, bad = 1
输出1
*/
#include <bits/stdc++.h>
using namespace std;
bool isBadVersion(int version) {
if (version < 4) {
return false;
}
return true;
}
int firstBadVersion(int n) {
int low = 0, high = n;
while (low <= high) {
int mid = (high - low) / 2 + low;
if (isBadVersion(mid) && !isBadVersion(mid - 1)) {
return mid;
}
if (isBadVersion(mid)) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return 0;
}
int main() {
cout << firstBadVersion(100);
return 0;
}