백트래킹으로 해결했다
정렬 순이니
반복문을
int i=1; i<=3; i++ 으로 해서
재귀호출로 cnt를 채워주면 된다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
public class Main {
static int n,k;
static boolean flag = false;
static int cnt =0;
static int dp[] = new int[12];
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] t = br.readLine().split(" ");
n = Integer.parseInt(t[0]);
k = Integer.parseInt(t[1]);
dp[1]=1;
dp[2]=2;
dp[3]=4;
dfs(0,0);
if(!flag) {
System.out.println(-1);
}
}
public static void dfs(int num, int level) {
if(num>n) {
return ;
}
if(num ==n) {
cnt++;
if(cnt == k) {
flag = true;
for(int i=0; i<level-1;i++) {
System.out.print(dp[i]+"+");
}
System.out.println(dp[level-1]);
}
return ;
}
for(int i=1; i<=3; i++) {
dp[level]=i;
dfs(num+i,level+1);
}
return ;
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
">cs |
'알고리즘' 카테고리의 다른 글
[백준 15989] 1,2,3 더하기 4 -JAVA // le_effort// (1) | 2020.03.09 |
---|---|
[백준 15988] 1,2,3 더하기 3 -JAVA// le_effort// (0) | 2020.03.09 |
[백준 9095] 1,2,3 더하기 -JAVA //le_effort (0) | 2020.03.09 |
[백준 10942] 펠린드롬? -JAVA // le_effort// (0) | 2020.03.09 |
[백준 15558] 점프게임 -JAVA //le_effort// (0) | 2020.03.05 |