标签: algorithm
我在data.frame中有2个变量:a, b。 我需要找到a的最大和,其中sum of b = x。
2
a, b
a
sum of b = x
好,例如:
| a | b | |401| 2 | |380| 3 | |380| 2 | |370| 1 |
因此,对于sum(b)=1,max(sum(a)) = 370,sum(b)=2,max(sum(a))=401等。 如何找到解决该问题的方法?
sum(b)=1
max(sum(a)) = 370
sum(b)=2
max(sum(a))=401
不确定使用线性规划可以解决此问题