본문 바로가기

알고리즘!

백준 2750번- 수 정렬하기

문제

N개의 수가 주어졌을 때, 이를 오름차순으로 정렬하는 프로그램을 작성하시오.

입력

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

출력

첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다.

 

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include <numeric>
#include<math.h>
#include<set>
using namespace std;

int main() {
	int n,a;
	set<int>st;
	cin >> n;
	for (int i = 0; i < n; i++) {
		scanf("%d",&a);
		st.insert(a);
	}
	for (auto i : st)
		printf("%d\n", i);
}

set 컨테이너를 이용해서 정말 간단하게 풀었다.

'알고리즘!' 카테고리의 다른 글

백준 1427번- 소트인사이드  (0) 2019.09.04
백준 2108번- 통계학  (0) 2019.09.03
백준 7568번-덩치  (0) 2019.08.29
백준 2231번-분해합  (0) 2019.08.29
백준 2798번-블랙잭  (0) 2019.08.26