vector分配二维数组

分配一个m*n的数组(m行,n列)
vector<vector<int>> dp(m,  vector<int>(n));
原文地址:https://www.cnblogs.com/music-liang/p/13262684.html