[ BOJ / C++ ] 2012번 등수 매기기
이번 문제는 그리디 알고리즘을 통해 간단하게 해결하였다.
- 입력받은 예상 등수를 오름차순으로 정렬한다.
- 예상 등수를 wish라고 하고 등수를 rank라고 한다면, abs(wish-rank)가 최소가 되기 위해서는 예상 등수 배열의 첫번째 수부터 차례대로 등수를 매긴다.
- 반복문을 통해 차의 절댓값을 모두 더해준다.
Code
#include <iostream>
#include <algorithm>
#include <math.h>
#define MAX 500001
using namespace std;
int n;
int wish[MAX];
int cnt=0;
void Input(){
cin>>n;
for(int i=0; i<n; i++){
cin>>wish[i];
}
}
void Solution(){
sort(wish, wish+n);
for(int i=0; i<n; i++){
cnt+=abs(i+1-wish[i]);
}
cout<<cnt<<endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
Input();
Solution();
return 0;
}
#include <iostream>
#include <algorithm>
#include <math.h>
#define MAX 500001
using namespace std;
int n;
int wish[MAX];
int cnt=0;
void Input(){
cin>>n;
for(int i=0; i<n; i++){
cin>>wish[i];
}
}
void Solution(){
sort(wish, wish+n);
for(int i=0; i<n; i++){
cnt+=abs(i+1-wish[i]);
}
cout<<cnt<<endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
Input();
Solution();
return 0;
}
Author And Source
이 문제에 관하여([ BOJ / C++ ] 2012번 등수 매기기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@xx0hn/BOJ-C-2012번-등수-매기기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)