Suppose we have a sequence of containers each of which contains multiple items. Each item $I_i$ is associated with an nonnegative weight $w_i$, a nonnegative value $v_i$, and $I_i(C)$ denotes the ID of the container item $I_i$ belongs to. Given a bag with capacity $B$, the problem aims to select items into the bag without exceeding the capacity $B$ under the constraints that items being selected must come from different containers. Formally, the goal is
$$\text{maximise } \sum_h p_h*v_h $$ subject to: (1) $p_h=1$ or 0. (2) $\sum_h p_h*w_h \leq C$. (3) $\forall j,k$, if $p_j=p_k=1$, $I_j(C) \neq I_k(C)$.
I know we can reduce the traditional knapsack problem to my problem when the size of each container is 1. But this reduction does not imply that my problem is strongly NP-hard since the traditional knapsack problem is weakly NP-hard. So my question is: can we reduce a strongly NP-hard problem to my problem?
Another thing I want to share which is not really relevant though, is that my problem can be reduced to knapsack problem with conflict graphs which is known to be strongly NP-hard.