how to intialize double vector code example
Example 1: 2d vector c++ declaration
vector< vector<int>> a(rows, vector<int> (cols));
Example 2: store arbitrarly large vector of doubles c++
typedef std::vector<int> int_vector;
int_vector dp(10000);