Notation: $\max( x_1, \cdots, x_n )$ denotes the maximal number among $x_1, \cdots, x_n$. $\min( x_1, \cdots, x_n )$ denotes the minimal number among $x_1, \cdots, x_n$.
Assumption: $x_i, a_i, b_k$ are all in $[0,1]$
minimize $\max( \{ \min(a_i, x_i) \mid i \in I\})$
$\max\{x_i\mid i\in J_k\}=b_k$ where $1\leq k\leq m$ and $J_k\subseteq \{1, \cdots, n\}$
for example:
minimize $\max( \{ \min(0.2, x_1) , \min(0.8, x_3)\})$
$\max\{x_1, x_4\}=0.7$ and $\max\{x_1, x_2, x_3\}=0.5$
What's the complexity of this problem?