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
- C
- udemy
- BASIC
- graph
- 정수론
- DP
- String
- php
- 종만북
- 백준
- 따라하며 배우는 C언어
- web
- 인프런
- C언어
- Cleancode
- Math
- BOJ
- BFS
- JavaScript
- programmers
- Algorithm
- Algospot
- 생활코딩
- 따라하면서 배우는 C언어
- greedy
- sorting
- server
- dfs
- Python
- 따배씨
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 10819 / 차이를 최대로 / Python 파이썬 본문
[BOJ] 10819 / 차이를 최대로 / Python 파이썬
https://www.acmicpc.net/problem/10819
풀이
순열을 이용하여, 모든 경우를 만들어 비교하였다.
from itertools import permutations
N = int(input())
nums = list(map(int, input().split()))
res = 0
for per in permutations(range(N), N):
tmp = 0
for i in range(1, N):
tmp += abs(nums[per[i]] - nums[per[i-1]])
res = max(res, tmp)
print(res)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1963 / 소수 경로 / Python 파이썬 (0) | 2021.07.25 |
---|---|
[BOJ] 10971 / 외판원 순회2 / Python 파이썬 (0) | 2021.07.25 |
[BOJ] 9095 / 1, 2, 3 더하기 / Python 파이썬 (0) | 2021.07.19 |
[BOJ] 1451 / 직사각형으로 나누기 / Python 파이썬 (0) | 2021.07.13 |
[BOJ] 1107 / 리모컨 / Python 파이썬 (0) | 2021.07.11 |
Comments