0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 06:18:48 +00:00

P1947 猜数

R43654062
This commit is contained in:
Baoshuo Ren 2020-12-13 16:31:18 +08:00 committed by Baoshuo Ren
parent 94c2a7cb43
commit 8cd137f0cc
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
problem/P1947/P1947.cpp Normal file
View File

@ -0,0 +1,17 @@
extern "C" int Seniorious(int);
extern "C" int Chtholly(int n, int OvO) {
int ans = 1;
int l = 1, r = n;
int mid = l + r >> 1;
while (l <= r) {
if (Seniorious(mid) >= 0) {
ans = mid;
r = mid - 1;
}
else {
l = mid + 1;
}
mid = l + r >> 1;
}
return ans;
}