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
- HTML #CSS
- 컴퓨터공학 #c #c언어 #문자열입력
- 컴퓨터공학 #자료구조 #스택 #c++ #알고리즘 #백준문제풀이
- BOJ #컴퓨터공학 #C++ #알고리즘 #자료구조
- 잔
- 컴퓨터공학 #Java #자바 #클래스 #객체 #인스턴스
Archives
- Today
- Total
영벨롭 개발 일지
[백준 BOJ][C++]10819번 차이를 최대로 풀이: std::next_permutation() 본문
https://www.acmicpc.net/problem/10819
https://iridescent-zeal.tistory.com/97
#include<iostream>
#include<algorithm>
#include<array>
#include<vector>
#include<cmath>
#include<cstdlib>
using namespace std;
int main(void) {
vector<int> arr;
int N;
int ans = 0;
scanf("%d", &N);
for (int i = 0; i < N; i++) {
int x;
scanf("%d", &x);
arr.push_back(x);
}
sort(arr.begin(), arr.end());
do {
int sum = 0;
for (auto it = arr.begin(); it != arr.end() - 1; it++) {
sum += abs(*(it)-*(it + 1));
}
ans = max(ans, sum);
} while (next_permutation(arr.begin(), arr.end()));
printf("%d", ans);
return 0;
}
반응형
'알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
[백준 BOJ][C++]10971번 원판원 순회2 풀이: DFS or next_permutation() (0) | 2022.04.01 |
---|---|
[백준 BOJ][C++]9375번 패션왕 신해빈 풀이: hash (0) | 2022.03.31 |
[백준 BOJ][C++]10972번 다음 순열 풀이: std::next_permutation() (0) | 2022.03.31 |
[백준 BOJ][C++]15663번 N과 M(9) 풀이: 브루트 포스 & DFS (0) | 2022.03.29 |
[백준 BOJ][C++]13023번 ABCDE 풀이: 그래프 & DFS (0) | 2022.03.28 |