码迷,mamicode.com
首页 > 其他好文 > 详细

377. Combination Sum IV (DP)

时间:2018-08-03 01:17:39      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ons   span   targe   target   []   amp   new   int   bin   

 1 class Solution {
 2     public int combinationSum4(int[] nums, int target) {
 3         int[] res = new int[target + 1];
 4         res[0] = 1;
 5         for(int i = 1; i <= target; i++) {
 6             for(int j = 0; j < nums.length; j++) {
 7                 if(nums[j] <= i && res[i - nums[j]] > 0) {
 8                     res[i] += res[i - nums[j]] ;
 9                 }
10             }
11         }
12         return res[target];
13 
14         
15     }
16 }

 

377. Combination Sum IV (DP)

标签:ons   span   targe   target   []   amp   new   int   bin   

原文地址:https://www.cnblogs.com/goPanama/p/9410842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!