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

leetcode 377 组合之和4

时间:2019-05-29 23:35:36      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:etc   问题   com   +=   需要   sum   targe   解方程   组合   

题目:

本质上就是dp里的找零或者解方程问题。

 

思路:

dp。

 

代码:

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

 

注意事项:

1.初始化,opt[0] = 1;

2.避免数组越界。由于i - nums[j]作为下标,所以需要判断。

leetcode 377 组合之和4

标签:etc   问题   com   +=   需要   sum   targe   解方程   组合   

原文地址:https://www.cnblogs.com/hiyashinsu/p/10946898.html

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