static int inflateSizeAccordingToMultiSet(Collection l, MultiSet ms) { int n = 0; for (A a : unnull(l)) n += max(ms.get(a), 1); ret n; }