I want to initialize a std::vector (of std::pair), with k objects, with the pair of values shown below.
k
Here is my attempt:
// int k std
Assuming Point::FT is something for which numeric_limits::max() is valid,
Point::FT
numeric_limits::max()
std::vector > v(k, std::make_pair(std::numeric_limits::max(), -1));