博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
377. Combination Sum IV (DP)
阅读量:5319 次
发布时间:2019-06-14

本文共 508 字,大约阅读时间需要 1 分钟。

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 }

 

转载于:https://www.cnblogs.com/goPanama/p/9410842.html

你可能感兴趣的文章
RSS阅读器
查看>>
微信电脑版不断崩溃
查看>>
js链式调用
查看>>
数字统计
查看>>
20180620小测
查看>>
聊聊setTimeout和setInterval线程
查看>>
项目执行过程
查看>>
关于input type=file 限制文件上传类型
查看>>
深入浅出Mybatis系列(八)---mapper映射文件配置之select、resultMap[转]
查看>>
JDK中DNS缓存的分析
查看>>
Objective-C中的@property和@synthesize用法
查看>>
一位面试者提到直接调用vuex中mutations方法
查看>>
动态加载vs静态加载
查看>>
(7)关于margin的一些想法2.0
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
一些有意思的算法代码[转载]
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>