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 | 31 |
Tags
- 오픽노잼공부방법
- XML주석
- 바텀업
- 오픽
- 오픽노잼
- fibo
- dynamicProgramming
- 오픽점수잘받는방법
- stack 스택
- 주석
- 영어말하기
- 피보나치수열
- 메모이제이션
- 안드로이드주석
- 오픽가격
- 오픽공부법
- 탑다운
- 안드로이드
- English
- 이진탐색
- ㅂ
- 이진탐색 #나무 자르기
- 디피
- opic
- dp
- 다이나믹프로그래밍
- XML
- topdown
- 영어회화
Archives
RUBY
[백준] 차이를 최대로 본문
출처:: www.acmicpc.net/problem/10819
분류:: 브루트포스, 순열
1. 문제 이해 및 해결과정
- 모든 순열로 경우를 고려하면 된다 |
2. 풀이방법
1. 순열
#차이를 최대로
#https://www.acmicpc.net/problem/10819
import sys
from itertools import permutations
sys.stdin = open("input.txt","r")
input=sys.stdin.readline
n=int(input())
a=list(map(int,input().split()))
selected=list(permutations(a,n))
res=-1e9
for i in range(len(selected)):
sum=0
s=selected[i]
for j in range(1,len(s)):
sum+=abs(s[j]-s[j-1])
res=max(res,sum)
print(res)
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 다음 순열 (0) | 2020.10.02 |
---|---|
[백준] 가장 긴 바이토닉 부분 수열 (0) | 2020.10.02 |
[백준] 이전 수열 (0) | 2020.10.02 |
[백준] 가장 큰 증가 부분 수열 (0) | 2020.10.02 |
[백준] 외판원 순회 2 (0) | 2020.10.02 |
Comments