377. Combination Sum IV (DP)
Posted gopanama
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了377. Combination Sum IV (DP)相关的知识,希望对你有一定的参考价值。
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)的主要内容,如果未能解决你的问题,请参考以下文章