https://www.acmicpc.net/problem/10819

 

10819번: 차이를 최대로

첫째 줄에 N (3 ≤ N ≤ 8)이 주어진다. 둘째 줄에는 배열 A에 들어있는 정수가 주어진다. 배열에 들어있는 정수는 -100보다 크거나 같고, 100보다 작거나 같다.

www.acmicpc.net

풀이

라이브러리 itertools를 이용해 permutations 사용순서를 바꿔서 모든 경우의 수열에서 최댓값을 찾는다.

# 10819번 차이를 최대로
# 라이브러리 itertools의 순열 이용
from itertools import permutations

N = int(input())
arr = list(map(int, input().split()))
maximum = 0

for nums in permutations(arr, N):
    total = 0
    for i in range(N-1):
        total += abs(nums[i] - nums[i+1])
    if total > maximum:
        maximum = total

print(maximum)

출력결과

개발자 성현