250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 에라토스테네스의채
- 완탐
- 백준15652
- 정보처리기사
- 중복순열
- 파티션 크기 조정
- java
- D드라이브생성
- Bfs와DFS
- 코테
- 순열
- 백준
- 백준13458
- 볼륨 만들기
- BFS
- 알고리즘
- 전화번호속의암호
- 재귀함수
- 정올 1620
- 코테준비
- 알고리즘개념
- 자바 코테
- 중복조합
- 완전탐색
- 주사위굴리기2
- 23288
- N과M
- 삼성역테
- 백준2251
- 자바
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 10819번 차이를 최대로 본문
728x90
* 출처: 백준 www.acmicpc.net/problem/10819
내 생각
단순 브루트포스 문제
public class Main {
static int[] numbers;
static int N;
static int max;
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(in.readLine());
String s[] = in.readLine().split(" ");
numbers = new int[N];
max = 0;
for(int i = 0;i<N;i++) {
numbers[i] = Integer.parseInt(s[i]);
}
permutation(0,new int[N], new boolean[N]);
System.out.println(max);
}
static void permutation(int toSelect, int[] selected, boolean[] visited) {
if(toSelect == N) {
int sum = 0;
for(int i=1;i<N;i++) {
sum += Math.abs(selected[i]- selected[i-1]);
}
if(max<sum) {
max = sum;
}
return;
}
for(int i=0;i<N;i++) {
if(!visited[i]) {
visited[i] = true;
selected[toSelect] = numbers[i];
permutation(toSelect+1, selected, visited);
visited[i] = false;
}
}
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 1935번 후위 표기식2 (0) | 2021.02.07 |
---|---|
[문제] 백준 1918번 후위표기식 (0) | 2021.02.07 |
[문제] 백준 2493번 탑 (0) | 2021.02.04 |
[문제] 백준 6603번 로또 (0) | 2021.02.04 |
[문제] 백준 1992번 쿼드트리 (0) | 2021.02.04 |
Comments