Skip to content

Instantly share code, notes, and snippets.

@musou1500
Last active August 26, 2020 18:24
Show Gist options
  • Save musou1500/9c15e92efd2b48b9e3cf91d89e922822 to your computer and use it in GitHub Desktop.
Save musou1500/9c15e92efd2b48b9e3cf91d89e922822 to your computer and use it in GitHub Desktop.
ll left = 0, right = max_n;
while (right - left > 1) {
ll mid = (left + right) / 2;
if (check(va, vf, mid, k)) {
right = mid;
} else {
left = mid;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment