Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
595 views
in Technique[技术] by (71.8m points)

algorithm - Is partitioning an array into halves with equal sums P or NP?

This was an algorithm interview question about the Partition Problem.

You are given an array which consists of numbers with between 0 and 5 digits. Write a function which will return whether the array can be divided into 2 halves such a that sum of the two halves would be equal.

Is this an NP problem or can it be solved by dynamic programming?

"between 0 and 5 digit" means 0 ~ 99999, I think.


I found a good answer to this outside SO here.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This is clearly NP - a solution can be verified in polynomial time.

However it is not NP-complete because the elements are bounded (number between 0 to 5 digit range).

The problem is known to undergo a "phase transition", being easy for m / n < 1 and hard otherwise


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...