SW
[백준 11004] K번째 수 본문
0. 제목
- 백준 11004 K번째 수
- BOJ 11004 K번째 수
- C++ 11004 K번째 수
1. 문제
https://www.acmicpc.net/problem/11004
2. 풀이
- STL의 sort는 quick sort와 같다.
3. 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <iostream>
#include <algorithm>
using namespace std;
int N, K;
int arr[5000001];
int main(int argc, const char * argv[]) {
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
cin >> N >> K;
for(int i = 0; i < N; i++)
cin >> arr[i];
sort(arr, arr + N);
cout << arr[K - 1] << '\n';
return 0;
}
|
'대학교 > Algorithm' 카테고리의 다른 글
[백준 1543] 문서 검색 (0) | 2020.08.24 |
---|---|
[백준 2798] 블랙잭 (0) | 2020.04.06 |
[백준 11652] 카드 (2) | 2020.04.04 |
[백준 10989] 수 정렬하기 3 (0) | 2020.04.04 |
[백준 10825] 국영수 (0) | 2020.04.04 |
Comments