Given number of scenes with required actor in the scene where each actors is paid per day. We want to minimize the total production cost (Hentenryck, 2002)

GIF from GIPHY https://giphy.com/gifs/spongebob-season-3-spongebob-squarepants-l1KtWF6aBGvYx5XRm
Let
$i$ is assigned on day $d$ . Otherwise $0$$s$ is assigned on day $d$. Otherwise $0$$i$ in each day.$$ \sum_{s\in scenes}^{N} y_{s,d} \leq 4 $$
All scenes must be recorded, $\forall s\in Scenes$
$$ \sum_{d \in days}^{M} y_{s,d}=1 $$
Each scene have a required actor, $\forall s \in Scenes$, $\forall d \in days$, $\forall a \in actors$, if $a \in s$ then
$$ y_{s,d} \implies x_{a,d} $$
We want to minimize paying the actor for each days.
$$ \min \sum_{d\in days} \sum {i \in actors}x{i,d}c_i $$