Recent Posts
Notice
No Rules Rules
N번째 큰 수 (feat. 백준, 2075번) 본문
728x90
반응형
N번째 큰 수
https://www.acmicpc.net/problem/2075
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
priority_queue<int, vector<int>, greater<int>> arr;
for(register int i = 0, j, v; i < N; ++i)
for(j = 0; j < N; ++j){
cin >> v, arr.push(v);
if(arr.size() > N)
arr.pop();
}
cout << arr.top();
return 0;
}
// *&)*@*
반응형
- 모든 수를 가지고 가면 메모리 초과 판정을 받게 됩니다.
- N번째 큰수 라는 것은 N개만 가지고 있는 자료 구조에서 최소값을 찾는 것과 같습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
집합 (feat. 백준, 11723번) (0) | 2023.01.31 |
---|---|
몇개고? (feat. 백준, 27294번) (0) | 2023.01.31 |
장기자랑 (feat. 백준, 27277번) (0) | 2023.01.27 |
피시방 알바 (feat. 백준, 1453번) (0) | 2023.01.27 |
숨바꼭질 2 (feat. 백준, 12851번) (0) | 2023.01.27 |
Comments