pair<vector<int>,int> is the name of a type. For the initialization, you need a value.
You get a value by calling the constructor of the type (the same way that, at the top level of the statement, you're doing for var_name). Since this is creating a value in-line in an expression, rather than initializing a variable, there is no variable name, and we just write something like pair<vector<int>,int>(...). The ... are the arguments for the constructor (putting (y) anywhere inside the angle brackets is illogical). In our case, we want the first value to be a vector of length y, and the second value to be... 0, I assume.
So we get pair<vector<int>,int>(vector<int>(y), 0). That's rather unwieldy, which is why the standard library provides the template function std::make_pair. It gets around the fact that template arguments can't be inferred for constructors, by using a free function (which can do inference with template arguments) to call the constructor.
Thus the above shortens to make_pair(vector<int>(y), 0), which, when substituted into the rest of the line, gives Benjamin Lindley's answer.