Say I have a multiset with $n$ elements, with $n_1, n_2,..., n_k$ of each "type", and $n_0 = n-(n_1+n_2+...+n_k)$ of "type" "don't care".
I take a random permutation of the multiset.
What is the probability that none of the $n_1, n_2,..., n_k$ occupy a position taken by their respective "type" before the permutation?
As a simple example, say the multiset is $\{1,2,2,3,3,3,0,0,0,0,0,0,0\}$, where $0$ represents the "don't care" item.
Then $\{0,0,0,0,0,1,0,2,2,3,3,3,0\}$ is one such derangement - none of the positive integers appears in a place previously occupied by one of itself, and I don't care about any zero that does.
There are some nice answers on the site for the case of multiset derangements, but none I've found deal with the "don't care" case.
Solution or reference(s) most appreciated.