Talent scheduling represents a complex optimization challenge within the fields of computer science and operations research, specifically categorized under combinatorial optimization. Consider, for example, a case involving the production of multiple films, each comprising several scenes that necessitate the participation of one or more actors. Importantly, only one scene can be filmed per day, and the remuneration for the actors is calculated on a daily basis. A critical constraint in this problem is that actors must be engaged for consecutive days; for instance, an actor cannot be contracted for filming on the first and third days without also being hired on the intervening second day. Furthermore, during the entire hiring period, producers are obligated to compensate the actors, even on days when they are not actively participating in filming. The primary objective of talent scheduling is to minimize the total salary expenditure for the actors by optimizing the sequence in which scenes are filmed.
Mathematical formulation Consider a film shoot composed of n {\displaystyle n} shooting days and involving a total of m {\displaystyle m} actors. Then we use the day out of days matrix (DODM) T 0 ∈ { 0 , 1 } m × n {\displaystyle T^{0}\in \{0,1\}_{m\times n}} to represent the requirements for the various shooting days. The matrix with the ( i , j ) {\displaystyle (i,j)} entry given by:
t m × n 0 = { 1 , if actor i is required in scene j, 0 , otherwise. {\displaystyle t_{m\times n}^{0}={\begin{cases}1,&{\mbox{if actor i is required in scene j,}}\\0,&{\mbox{otherwise.}}\end{cases}}}
Then we define the pay vector R m {\displaystyle {\mathfrak {R}}^{m}} , with the i {\displaystyle i} th element given by c i {\displaystyle c_{i}} which means rate of pay per day of the i {\displaystyle i} th actor. Let v denote any permutation of the n columns of T 0 {\displaystyle T^{0}} , we have:
σ : { 1 , 2 , . . . , n } → { 1 , 2 , . . . , n } {\displaystyle \sigma :\{1,2,...,n\}\rightarrow \{1,2,...,n\}}
σ n {\displaystyle \sigma _{n}} is the permutation set of the n shooting days. Then define T ( σ ) {\displaystyle T(\sigma )} to be the matrix T 0 {\displaystyle T^{0}} with its columns permuted according to σ {\displaystyle \sigma } , we have:
t i , j ( σ ) = t i , σ ( j ) 0 {\displaystyle t_{i,j}(\sigma )=t_{i,\sigma (j)}^{0}} for i ∈ { 1 , 2 , . . . , n } , j ∈ { 1 , 2 , . . . , n } {\displaystyle i\in \{1,2,...,n\},j\in \{1,2,...,n\}}
… excerpt ends here. Continue reading the full article.


