반응형
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 차이를 최대로 (10819)
[ 문제 ]
N개의 정수로 이루어진 배열 A가 주어진다. 이때, 배열에 들어있는 정수의 순서를 적절히 바꿔서 다음 식의 최댓값을 구하는 프로그램을 작성하시오.
|A[0] - A[1]| + |A[1] - A[2]| + ... + |A[N-2] - A[N-1]|
[ 입력 ]
첫째 줄에 N (3 ≤ N ≤ 8)이 주어진다. 둘째 줄에는 배열 A에 들어있는 정수가 주어진다. 배열에 들어있는 정수는 -100보다 크거나 같고, 100보다 작거나 같다.
[ 출력 ]
첫째 줄에 배열에 들어있는 수의 순서를 적절히 바꿔서 얻을 수 있는 식의 최댓값을 출력한다.
[ 코드 1 ]
#include<iostream>
#include<algorithm>
#include<vector>
#include<math.h>
using namespace std;
int main() {
int n;
cin >> n;
vector <int> A(n);
for (int i = 0; i < n; i++)
{
cin >> A[i];
}
sort(A.begin(), A.end());
int result = 0;
do
{
int temp = 0;
for (int i = 0; i < n - 1; i++)
{
temp += abs(A[i] - A[i + 1]);
}
if (result < temp)
{
result = temp;
}
} while (next_permutation(A.begin(), A.end()));
cout << result << '\n';
return 0;
}
[ 코드 2 ]
#include<iostream>
#include<algorithm>
#include<vector>
#include<math.h>
using namespace std;
int calculate(vector <int>& a) {
int sum = 0;
for (int i = 1; i < a.size(); i++)
{
sum += abs(a[i] - a[i - 1]);
}
return sum;
}
int main() {
int n;
cin >> n;
vector <int> A(n);
for (int i = 0; i < n; i++)
{
cin >> A[i];
}
sort(A.begin(), A.end());
int result = 0;
do
{
int temp = calculate(A);
result = max(temp, result);
} while (next_permutation(A.begin(), A.end()));
cout << result << '\n';
return 0;
}
반응형
'문과 코린이의, [C. C++] 기록 > C++ 백준 문제풀이' 카테고리의 다른 글
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 로또 (6603) (0) | 2021.08.16 |
---|---|
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 외판원 순회 (10971) (0) | 2021.08.16 |
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 모든 순열 (10974) (0) | 2021.08.16 |
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 이전 순열 (10973) (0) | 2021.08.16 |
[문과 코린이의 IT 기록장] C++ 백준 문제풀이[BF] - 다음 순열 (10972) (0) | 2021.08.16 |