정렬을 사용하는 문제이다.
주의할 점은 예상 등수가 1 ~ n 사이를 벗어날 수 있다!!
그래서 입력값을 소팅한 다음에 본래 등수와의 차이를 더하여 결과값을 리턴한다.
#include <stdio.h>
#include <vector>
#include <algorithm>
#include <math.h>
using namespace std;
int n;
int main(void)
{
scanf("%d", &n);
vector<int> rank;
long long sum = 0;
for (int i = 1; i <= n; i++)
{
int tmp;
scanf("%d", &tmp);
rank.push_back(tmp);
}
sort(rank.begin(), rank.end());
for (int i = 0; i < n; i++)
{
sum += abs(rank[i] - (i + 1));
}
printf("%lld\n", sum);
return 0;
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 15686] 치킨 배달 (0) | 2020.12.16 |
---|---|
[백준 15683] 감시 (0) | 2020.12.16 |
[백준 1543] 문서 검색 (0) | 2020.12.16 |
[백준 1541] 잃어버린 괄호 (0) | 2020.12.16 |
[백준 2011] 암호코드 (0) | 2020.12.15 |
댓글