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
- 알고리즘
- 백준
- 백준11000
- 백준11047
- 프로그래머스43165
- 백준1969
- 백준4796
- 바닥장식
- BFS
- 구현
- 백준 1946
- 자바
- 프로그래머스
- 신입 사원
- sql
- 백준10988
- dfs
- 강의실배정
- Java
- BFS/DFS
- 백준1388
- 백준2606
- Spring Framework MVC
- 백준12845
- 동전0
- 타겟넘버
- jsp
- 그리디
- javascript
- 펠린드롬
Archives
- Today
- Total
목록타겟넘버 (1)
The Kkang's man
[ 자바 /Java ] 프로그래머스 43165 : 타겟넘버
문제 풀이 한 경우를 끝까지 탐색한다는 점에서 DFS로 풀이 마지막 자리가 아닌 경우(index != numbers.length) 재귀함수를 통해 부호를 바꿔가며 탐색한다. 마지막 자리일 경우 (index == numbers.length) sum을 초기화하고 해당 인덱스의 수를 더한다. 모두 더한 값 sum이 target 넘버와 같을 경우 cnt++ class Solution { private static int cnt = 0; public int solution(int[] numbers, int target) { dfs(0, target, numbers);// DFS를 이용해 풀이 int answer = cnt; return answer; } public void dfs(int index, int ta..
알고리즘/BFS&DFS
2021. 7. 4. 20:47