while (l < r) { int mid = l + r >> 1; if (st[mid].second < x) { l = mid + 1; } else { r = mid; } }
这段代码和lowerbound区别在于什么地方/yiw
/ll二分学不会了/kk