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

leetcode377 Combination Sum IV

时间:2017-09-07 20:26:03      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:nat   tor   tar   leetcode   begin   code   ati   nbsp   com   

思路:

dp。

实现:

 1 class Solution 
 2 {
 3 public:
 4     int combinationSum4(vector<int>& nums, int target) 
 5     {
 6         if (nums.empty()) return target == 0;
 7         vector<int> dp(target + 1, 0);
 8         dp[0] = 1;
 9         vector<int> tmp(nums.begin(), nums.end());
10         sort(tmp.begin(), tmp.end());
11         int n = tmp.size();
12         for (int i = 1; i <= target; i++)
13         {
14             for (int j = 0; tmp[j] <= i && j < n; j++)
15             {
16                 dp[i] += dp[i - tmp[j]];
17             }
18         }
19         return dp[target];
20     }
21 };

 

leetcode377 Combination Sum IV

标签:nat   tor   tar   leetcode   begin   code   ati   nbsp   com   

原文地址:http://www.cnblogs.com/wangyiming/p/7491527.html

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