vector<int> a; /* ... */ vector<int> b(a.begin() + l, a.begin() + r + 1);
求问一下,下面的时间复杂度是和 a.size() 有关还是和 r-l+1 有关
a.size()
r-l+1