BOJ#12101 1, 2, 3 더하기 2
* 문제
* 풀이
dfs로 풀었습니다. dfs를 돌리면 자연스럽게 오름차순으로 결과가 나옵니다.
풀이는 쉽기 때문에 생략합니다.
dp로 다시 푼 후 업데이트 예정.
* 나의 코드
https://github.com/stack07142/BOJ/blob/master/BOJ%2312101_Sum123_2/src/Main.java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
/**
* BOJ#12101 1, 2, 3 더하기 2
* https://www.acmicpc.net/problem/12101
*/
public class Main {
static int n, k;
static int[] history = new int[11];
static int cnt = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
k = Integer.parseInt(st.nextToken());
solve(0, 0);
if (cnt != k) {
System.out.println(-1);
}
}
static boolean solve(int node, int step) {
if (node > n) {
return false;
}
if (node == n) {
cnt++;
if (cnt == k) {
// history 출력
for (int i = 0; i < step - 1; i++) {
System.out.print(history[i] + "+");
}
System.out.print(history[step - 1]);
return true;
}
}
for (int i = 1; i <= 3; i++) {
history[step] = i;
if (solve(node + i, step + 1)) return true;
}
return false;
}
}
'Algorithm > DP' 카테고리의 다른 글
BOJ#2098 외판원 순회 (0) | 2017.04.07 |
---|---|
BOJ#9520 NP-Hard (0) | 2017.04.06 |
BOJ#11048 이동하기 (0) | 2017.04.06 |
BOJ#11058 크리보드 (2) | 2017.04.05 |
BOJ#12969 ABC (0) | 2017.04.05 |