摘要: Problem DescriptionGiven a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For example, if t=4, n=6, and the list is [4,3,2,2,1,1], then there are four different sums that equal 4: 4,3+1,2+2, and 2+1+1.(A number can be used within a su 阅读全文
posted @ 2013-08-10 12:00 forevermemory 阅读(206) 评论(0) 推荐(0) 编辑