is there anything like vector<int>x[100]

vector<int> x[100];

Explanation: - vector<int>: Specifies a vector that can hold integers. - x[100]: Declares an array named x with 100 elements, where each element is of type vector<int>. This means x is an array containing 100 vectors capable of holding integers.