문제 링크 : https://www.acmicpc.net/problem/18870
풀이
먼저 입력받은 배열을 sort() 메서드를 사용해서 정렬하고, 그 후 unique()와 erase() 메서드를 사용해서 중복을 제거한다.
마지막으로 lower_bound() 메서드를 사용해서 현재 어느 위치에 존재하는지 알아낸다.
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
vector<int> X;
int ax[1000005];
int n;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i = 0; i < n; i++){
cin >> ax[i];
X.push_back(ax[i]);
}
sort(X.begin(), X.end());
X.erase(unique(X.begin(), X.end()), X.end()); // 중복 제거
for(int i = 0; i < n; i++){
cout << lower_bound(X.begin(), X.end(), ax[i]) - X.begin() << " ";
}
}
'알고리즘 > 알고리즘 문제 풀이' 카테고리의 다른 글
(C++) 백준 11047번 - 동전 0 (0) | 2023.05.13 |
---|---|
(C++) 백준 1654번 - 랜선 자르기 (0) | 2023.05.08 |
(C++) 백준 10816번 - 숫자 카드 2 (0) | 2023.05.08 |
(C++) 백준 1920번 - 수 찾기 (0) | 2023.05.08 |
(C++) 백준 12852번 - 1로 만들기 2 (0) | 2023.05.08 |