@IVlad very nice answer, thank you :)
However there's a catch:
The following should be removed :
dp[oxygen[i], nitrogen[i]] = weight[i] for each cylinder i and inf otherwise
And use this instead :
dp[0][0] = 0 and inf otherwise
The former statement is not a valid base case because it allows cylinders to be used twice.
How ?
The invariant of the outermost loop is that at the
N
th iteration (of k), we try for every i,j to compute the minimum weight that can be achieved to obtain at least i oxygen and j nitrogen
using only cylinders 1 to N (each one used once)
Consider the following test case where 2 oxygen and 2 nitrogen is required and we have 2 cylinders one with 1 ox 1 ni 1 weight, the other is 2 ox 2 ni 50 weight
2 2
2
1 1 1
2 2 50
The answer should be 50 simply because we can't use the 1st cylinder twice.
The base case that i claim wrong will fill d[1][1] = 1 before we even start the loops.
Then the loop starts with k=0 (use first cylinder and see if it helps in any entry), then d[2][2] will equal d[2-1][2-1]+1 = d[1][1] + 1 = 2
The final answer will be 2 units of weight because 1st cylinder was used twice due to the base case and this is not correct.