377. Combination Sum IV
2018-06-17 23:57:07来源:未知 阅读 ()
问题
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.
Example:
nums = [1, 2, 3] target = 4 The possible combination ways are: (1, 1, 1, 1) (1, 1, 2) (1, 2, 1) (1, 3) (2, 1, 1) (2, 2) (3, 1) Note that different sequences are counted as different combinations. Therefore the output is 7.
分析
根据题意,子问题可表示为 F(i) = F(i) + F(i - nums[j]),其中 i从1开始到target,j为数组下标,从0到nums.size()。通过计算可得,target为[1,target]的所有最大组合数,计算每个target用的是穷举遍历每个nums元素。
代码
int combinationSum4(vector<int>& nums, int target) { vector<int> V(target + 1 ,0); int i,j; V[0] = 1; //V[0]为1是因为i-nums[j] = 0 时 V[i-nums[j]] 成功一次 for(i = 1;i <= target; i++) { for( j = 0; j < nums.size(); j++) if(nums[j] <= i) V[i] += V[i - nums[j]]; } return V[target]; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:快速幂取模_C++
下一篇:c++矩阵运算库Eigen
- Max Sum 2020-02-17
- bzoj3944 Sum 2019-12-25
- Ural 1248 Sequence Sum 题解 2019-08-16
- DP_Sumsets 2019-08-16
- Two Sum 2019-08-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash