반응형
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
int[] num;
int[] changeNum;
boolean[] visit;
int n;
int max = 0;
public void solution() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
visit = new boolean[n];
num = new int[n];
changeNum = new int[n];
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i=0; i<n; i++){
num[i] = Integer.parseInt(st.nextToken());
}
dfs(0);
System.out.println(max);
}
public void dfs(int depth){
if(depth==n){
int result = 0;
for(int i=1; i<n; i++){
result += Math.abs(changeNum[i-1]-changeNum[i]);
}
max = Math.max(max, result);
}
for(int i=0; i<n; i++){
if(!visit[i]){
visit[i] = true;
changeNum[depth] = num[i];
dfs(depth+1);
visit[i] = false;
}
}
}
public static void main(String[] args) throws IOException {
new Main().solution();
}
}
dfs와 백트래킹을 활용한다.
주어진 n개의 숫자의 조합인 모든 순열을 탐색하고, 주어진 가장 큰 수를 출력한다.
반응형
'개발 > 알고리즘' 카테고리의 다른 글
백준 6603번 : 로또 (0) | 2023.01.20 |
---|---|
백준 10971번 : 외판원 순회 2 (0) | 2023.01.20 |
백준 10974번 : 모든 순열 (0) | 2023.01.18 |
백준 10973번 : 이전 순열 (0) | 2023.01.18 |
백준 10972번 : 다음 순열 (0) | 2023.01.18 |