Copie elementos de um vetor para outro facilmente
Neste exemplo, estou usando um vetor de pares para facilitar a compreensão de
`
vector<pair<int, int> > v(n);
//we want half of elements in vector a and another half in vector b
vector<pair<lli, lli> > a(v.begin(),v.begin()+n/2);
vector<pair<lli, lli> > b(v.begin()+n/2, v.end());
//if v = [(1, 2), (2, 3), (3, 4), (4, 5), (5, 6)]
//then a = [(1, 2), (2, 3)]
//and b = [(3, 4), (4, 5), (5, 6)]
//if v = [(1, 2), (2, 3), (3, 4), (4, 5), (5, 6), (6, 7)]
//then a = [(1, 2), (2, 3), (3, 4)]
//and b = [(4, 5), (5, 6), (6, 7)]
'
Como você pode ver, pode copiar facilmente elementos de um vetor para outro, se quiser copiar elementos do índice 10 para 16, por exemplo, usaríamos
vector<pair<int, int> > a(v.begin()+10, v.begin+16);
e se você quiser elementos do índice 10 para algum índice do final, nesse caso
vector<pair<int, int> > a(v.begin()+10, v.end()-5);
Espero que isso ajude, basta lembrar no último caso v.end()-5 > v.begin()+10