본문 바로가기

Algorithm/Implementation

(C++) - 백준(BOJ) 11931번 : 수 정렬하기 4

반응형

https://www.acmicpc.net/problem/11931

 

11931번: 수 정렬하기 4

첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000,000보다 작거나 같은 정수이다. 수는 중복되지 않는다.

www.acmicpc.net

간단한 정렬 구현 문제였습니다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
#include <algorithm>
using namespace std;
int a[1000000];
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n;
    cin >> n;
    for (int i = 0; i < n; i++)
        cin >> a[i];
    //greater<자료형> 내림차순 함수
    sort(a, a + n, greater<int>());
    for (int i = 0; i < n; i++)
        cout << a[i] << '\n';
}
cs