How many ways are there to distribute $n$ balls into $k$ bins where the first $r$ bins have less than $m$ balls (each) and the rest of the bins have more than $m$ (each)?
Given this solution for every bin has at least m balls, would it be a good start to sum the combinations of ($0$ balls for the less than bins)$\cdot$($n$ balls for the rest where each has at least $r$ balls)+...+($r\cdot m$ balls for the less than bins)$\cdot$($n-r\cdot m$ balls for the rest where each has at least $r$ balls)?
Every contribution is highly appreciated.