https://www.acmicpc.net/problem/10974
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
static int n;
static int[] arr;
static boolean[] visited;
public static void dfs(int cnt){
if(cnt == n){
for(int x : arr){
System.out.print(x+" ");
}
System.out.println();
return;
}
for(int i=1; i<=n; i++){
if(!visited[i]){
visited[i] = true;
arr[cnt] = i;
dfs(cnt+1);
visited[i] = false;
}
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
arr = new int[n];
visited = new boolean[n+1];
dfs(0);
}
}
n개의 자연수에서 n개를 고른 수열이라고 보면된다.
'ALGORITHM' 카테고리의 다른 글
[JAVA] 백준 6603- 로또 (0) | 2022.11.29 |
---|---|
[JAVA] 백준 10819번- 차이를 최대로 (0) | 2022.11.29 |
[JAVA] 백준 2583- 영역 구하기 (0) | 2022.11.27 |
[JAVA] 알고리즘 : 그리디- 원더랜드 (크루스칼, 프림) (0) | 2022.11.25 |
[JAVA] 알고리즘 : 그리디- 친구인가? (Disjoint-Set : Union&Find) (0) | 2022.11.25 |