priority_queue
사용법을 고새 잊어먹어서 감자록을 뒤져봤다.
priority_queue<자료형, 구현체, 비교연산자>
기억허자.
모든 입력을 다 받을 경우 최대 1,500 x 1,500 = 2,250,000
로 메모리 초과다.
따라서,
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, tmp;
cin >> n;
priority_queue<int, vector<int>, greater<int>> pq;
for (int i = 0; i < n * n; i++) {
cin >> tmp;
if (pq.size() < n)
pq.push(tmp);
else {
if (pq.top() < tmp) {
pq.pop();
pq.push(tmp);
}
}
}
cout << pq.top();
return 0;
}