Can we solve this particular function through dynamic programming?

前端 未结 0 618
我寻月下人不归
我寻月下人不归 2021-02-07 13:10

F(M)= (kC1 * (n-k)C(M-1)) + (kC3 * (n-k)C(M-2)) + ...

F(M+1)= (kC1 * (n-k)C(M)) + (kC3 * (n-k)C(M-1)) + ...

we have to find this for all M <= n. 1<=n <= 1

相关标签:
回答
  • 消灭零回复
提交回复
热议问题