set
set<int> s;
s.insert(x);
int x = *(--s.lower_bound(x));
vector
int pos = lower_bound(v.begin(), v.end(), x) - v.begin();
时间: 2024-10-06 09:10:56
set
set<int> s;
s.insert(x);
int x = *(--s.lower_bound(x));
vector
int pos = lower_bound(v.begin(), v.end(), x) - v.begin();