What is vector<vector<ll>> a(k+1,vector<ll> k+1>?

what this arguments besides a , what it is define?

@dhruvilcodes
this is the syntax for making a 2D vector, or, a vector of a vector of type ll.
The first argument is the size of the vector, and the second one is the thing you want to initialise it with.
So for eg if you wanted a vector of size n and all the elements inside to be initialised as -1, the syntax would be vector<int> v(n, -1)
Now we want a vector of type of vector, so the second argument is vector<ll>
I hope the size part is also clear, this will give you a k+1 * k+1 2D vector of type ll.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.