I know how to find the maximum contiguous subarray of an array in O(n). However the 2nd problem in the following link asks to find the maximum contiguous subarray when some of the elements (k) can be eliminated: http://www.iarcs.org.in/inoi/2011/inoi2011/inoi2011-qpaper.pdf I can't seem to find an efficient way to do this.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Given the constraints I believe doing a O(N^2) solution will do. I will not tell you how to solve the problem but will give you some hints:
Hope this will help you to solve the problem. |
|||||||
|
|
there is an O(N.K) dynamic programming solution: let initial values:
updating dynamic values:
and solution is |
||||
|
|