So, I can very easily initialize a hashmap from int to vector...
But can I initialize that vector with a size and maybe default values ??
For example : vector<int> a(2,0)
<--Size and values are initialized ....
So is there something for unordered_map<int, vector<int>>