Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백준
- 웹어플리케이션 서버
- Kotlin
- 백준 19238
- JVM
- Spring Boot
- springboot
- JPA
- MySQL
- 백준 16236
- re.split
- Coroutine
- java
- Spring
- 백준 16235
- 프로래머스
- 백준 파이썬
- with recursive
- spring security
- 프로그래머스
- 백준 17779
- java 기술면접
- 파이썬
- 백준 16719
- sql 기술면접
- 백준 15685
- MSA
- 백준 17626
- spring oauth
- spring cloud
Archives
- Today
- Total
시작이 반
[프로그래머스] 타겟 넘버 (Java 자바) 본문
SMALL
https://programmers.co.kr/learn/courses/30/lessons/43165?language=java
문제 설명
n개의 음이 아닌 정수가 있습니다. 이 수를 적절히 더하거나 빼서 타겟 넘버를 만들려고 합니다. 예를 들어 [1, 1, 1, 1, 1]로 숫자 3을 만들려면 다음 다섯 방법을 쓸 수 있습니다.
-1+1+1+1+1 = 3 +1-1+1+1+1 = 3 +1+1-1+1+1 = 3 +1+1+1-1+1 = 3 +1+1+1+1-1 = 3
사용할 수 있는 숫자가 담긴 배열 numbers, 타겟 넘버 target이 매개변수로 주어질 때 숫자를 적절히 더하고 빼서 타겟 넘버를 만드는 방법의 수를 return 하도록 solution 함수를 작성해주세요.
제한사항
- 주어지는 숫자의 개수는 2개 이상 20개 이하입니다.
- 각 숫자는 1 이상 50 이하인 자연수입니다.
- 타겟 넘버는 1 이상 1000 이하인 자연수입니다.
입출력 예
numbers | target | return |
[1, 1, 1, 1, 1] | 3 | 5 |
class Solution {
int count = 0;
public int solution(int[] numbers, int target) {
int answer = 0;
dfs(numbers, 0, target, 0);
answer = this.count;
return answer;
}
public void dfs(int[] numbers, int depth, int target, int result){
if (depth == numbers.length){
if (target == result){
this.count++;
}
return;
}
int add = result + numbers[depth];
int sub = result - numbers[depth];
dfs(numbers, depth+1, target, add);
dfs(numbers, depth+1, target, sub);
}
}
핵심코드, 푸는법:
완전탐색, DFS, 재귀
LIST
'알고리즘 > Programmers' 카테고리의 다른 글
[프로그래머스] 행렬 테두리 회전하기 (Java 자바) (0) | 2021.08.21 |
---|---|
[프로그래머스] 짝지어 제거하기 (Java 자바) (0) | 2021.08.21 |
[프로그래머스] 더 맵게 (Java 자바) (0) | 2021.08.21 |
[프로그래머스] 기능개발 (Java 자바) (0) | 2021.08.21 |
[프로그래머스] 124 나라의 숫자 (Java 자바) (0) | 2021.08.20 |