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
- spring security
- 프로래머스
- java
- MySQL
- spring cloud
- 웹어플리케이션 서버
- Spring Boot
- 백준 17626
- JVM
- 백준 파이썬
- 백준
- with recursive
- java 기술면접
- 프로그래머스
- Spring
- springboot
- 백준 15685
- 파이썬
- spring oauth
- 백준 16235
- 백준 16719
- MSA
- re.split
- JPA
- 백준 16236
- 백준 17779
- sql 기술면접
- 백준 19238
- Kotlin
- Coroutine
Archives
- Today
- Total
시작이 반
[알고리즘]수 분할 본문
SMALL
n이 주워질 때
더해서 n을 만들 수 있는 경우의 수를 구해라
ex) n = 4
1+1+1+1 = 4
1+1+2 = 4
1+2+1 = 4
1+3 = 4
2+1+1 = 4
2+2 = 4
3+1 =4
7가지 경우의 수
package com.company;
import java.util.Arrays;
public class 수분할 {
public void solution(int n){
int[] a = new int[n];
dfs(a, n, n, 0);
}
public void dfs(int[]array, int remainder, int n, int index){
if(remainder == 0){
System.out.println(Arrays.toString(array));
return;
}
for(int i = 1; i < n; i++){
if(remainder - i < 0) continue;
array[index] = i;
dfs(array, remainder - i, n, index + 1);
array[index] = 0;
}
}
}
핵심 코드, 푸는법:
재귀(완전탐색)
LIST