문제
풀이
우선순위 큐
위의 문제와 풀이가 같다. 들어오는 수를 저장해 두고, 홀수번마다 현재 중앙값을 출력한다.
코드
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
priority_queue<int> smaller;
priority_queue<int, vector<int>, greater<int>> bigger;
vector<int> nums;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while (T--)
{
int M;
cin >> M;
while (!smaller.empty())
{
smaller.pop();
}
while (!bigger.empty())
{
bigger.pop();
}
nums.clear();
for (int i = 1; i <= M; ++i)
{
int num;
cin >> num;
nums.push_back(num);
}
if (nums.size() % 2 == 1)
{
cout << (nums.size() / 2) + 1;
}
else
{
cout << nums.size() / 2;
}
cout << '\n';
for (int i = 1; i <= M; ++i)
{
int num = nums[i - 1];
if (smaller.empty())
{
smaller.push(num);
}
else if (smaller.size() == bigger.size())
{
smaller.push(num);
}
else
{
bigger.push(num);
}
if (!smaller.empty() && !bigger.empty() && smaller.top() > bigger.top())
{
int a = smaller.top();
smaller.pop();
int b = bigger.top();
bigger.pop();
bigger.push(a);
smaller.push(b);
}
if (i % 2 == 1)
{
cout << smaller.top() << " ";
}
if (i % 20 == 0)
{
cout << '\n';
}
}
cout << '\n';
}
return 0;
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준][C++] 2014: 소수의 곱 (0) | 2024.03.17 |
---|---|
[백준][C++] 1826: 연료 채우기 (0) | 2024.03.10 |
[백준][C++] 1781: 컵라면 (0) | 2024.03.06 |
[백준][C++] 2109: 순회강연 (1) | 2024.03.04 |
[백준][C++] 1766: 문제집 (2) | 2024.03.01 |