소스코드
정렬 sort
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
bool compare(int x, int y) {
return x < y;
}
int main(void) {
int N, K;
scanf("%d %d", &N, &K);
vector<int> v(N, 0);
for (int i = 0; i < N; i++) {
scanf("%d", &v[i]);
}
sort(v.begin(), v.end(), compare);
printf("%d\n", v[K-1]);
}
'개인 공부 > 코딩테스트' 카테고리의 다른 글
[C++][프로그래머스] 라면 공장 :: seoftware (0) | 2020.04.13 |
---|---|
[C++][프로그래머스] 더 맵게 :: soeftware (0) | 2020.04.13 |
[C++][leetcode] Last Stone Weight :: seoftware (0) | 2020.04.13 |
[C++][leetcode] Diameter of Binary Tree :: seoftware (0) | 2020.04.12 |
[C++][leetcode] Min Stack :: seoftware (0) | 2020.04.12 |
댓글