I've just read about possibility to solve set partition to half in polynomial time. But I could not find algorithm to do it.
I have two questions:
- Where I can get that algorithm?
- How is it possible that NP problem can be solved in polynomial time?
feedback
|
|
You should mention where exactly did you read that. It's possible that you stumbled upon a polynomial approximation algorithm, or a pseudo-polynomial exact algorithm (a dynamic programming pseudo-polynomial solution exists), but definitely not a polynomial, exact algorithm - since the partition problem is an NP problem, and no polynomial algorithm can solve it, unless P=NP. | |||||||||||
feedback
|
|
You cannot, it's NP-complete and thus far there is no way to solve an NP-complete problem in P time. | |||||||
feedback
|