sort済みでない配列にlower_bound(upper_bound)をすると何が得られる?
#include <bits/stdc++.h>using namespace std;int main() { vector<ll> V = {1, 9, 1, 9, 1, 9, 1, 9}; // 1 3 5 7 のどこかのindexがひっかかるはず。 auto it = lower_bound(V.begin(), V.end(), 2); cout << it - V.begin();}
Q. 出力は何