1. 유형
구현, 백트래킹
2. 자료구조
없음
3. 기능
- 순열
4. 풀이
- 재귀를 사용해서 순열을 구한다.
다음 재귀를 호출할 때, 500미만이면 백트래킹
코트.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int N, K, answer;
static int arr[];
static boolean visit[];
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(in.readLine());
N = Integer.valueOf(st.nextToken());
K = Integer.valueOf(st.nextToken());
visit = new boolean[N];
answer=0;
arr = new int[N];
st = new StringTokenizer(in.readLine());
for(int i=0; i<N ;i++) {
arr[i] = Integer.valueOf(st.nextToken());
}
dfs(500, 0);
System.out.println(answer);
}
static void dfs(int w, int day) {
if(day == N) {
answer++;
return;
}
for(int i=0; i<N; i++) {
if(visit[i]) continue;
visit[i] = true;
if(w-K+arr[i]>=500) {
dfs(w-K+arr[i], day+1);
}
visit[i] = false;
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 5587 - 카드 캡터 상근(Java) (0) | 2021.01.13 |
---|---|
백준 18428 - 감시 피하기(Java) (0) | 2021.01.13 |
백준 2310 - 어드벤처 게임(Java) (0) | 2021.01.09 |
백준 3987 - 보이저 1호(Java) (0) | 2021.01.08 |
백준 17225 - 세훈이의 선물가게(Java) (0) | 2021.01.08 |