[leetcode-39]Combination Sum(java)
2592 단어 leetcode
The same repeated number may be chosen from C unlimited number of times.
Note: All numbers (including target) will be positive integers. Elements in a combination (a1, a2, … , ak) must be in non-descending order. (ie, a1 ≤ a2 ≤ … ≤ ak). The solution set must not contain duplicate combinations. For example, given candidate set 2,3,6,7 and target 7, A solution set is: [7] [2, 2, 3]
분석: 이 문 제 는 DFS 를 사용 하지 않 으 면 재 귀 + 가지치기 가 필요 하지 않 으 면 많은 세부 사항 을 고려 해 야 합 니 다. 저 는 예전 에 재 귀 가 자원 을 너무 소모 한다 고 생각 했 기 때문에 직접 하고 싶 지만 생각 을 정리 하지 못 했 습 니 다.그리고 재 귀 하 는 방법 은 이미 정식 인 것 처럼 일정한 모델 에 따라 하면 정 답 으로 돌아 갈 수 있다.
코드 는 다음 과 같 습 니 다: 344 ms
public class Solution {
private void solve(List> res,int currentIndex,int count,List tmp,int[] candidates,int target){
if(count>=target) {
if(count==target)
res.add(new LinkedList<>(tmp));
return;
}
for(int i = currentIndex;iif(count+candidates[i]>target){
break;
}
tmp.add(candidates[i]);
solve(res,i,count+candidates[i],tmp,candidates,target);
tmp.remove(tmp.size()-1);
}
}
public List> combinationSum(int[] candidates, int target) {
List> res = new LinkedList>();
List tmp = new LinkedList<>();
Arrays.sort(candidates);
solve(res,0,0,tmp,candidates,target);
return res;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
0부터 시작하는 LeetCode Day8 「1302. Deepest Leaves Sum」해외에서는 엔지니어의 면접에 있어서 코딩 테스트라고 하는 것이 행해지는 것 같고, 많은 경우, 특정의 함수나 클래스를 주제에 따라 실장한다고 하는 것이 메인이다. 빠른 이야기가 본고장에서도 행해지고 있는 것 같은 코...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.