일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 검색완료
- 종이캐리어
- 사진에서 글자추출
- DFS
- 영통역소고기
- 영통외식
- 커피
- 사진문자추출하기
- 양양솔비치세프스키친
- 아이혼자다녀옴
- 고마워다음
- 편도수술
- 당근마켓중고차
- 커피쏟음
- 싱가폴중학교수학문제
- 에어아시아
- 오트눈썰매장
- 결항
- 사진문자추출
- 파이썬
- 양양솔비치조식
- 결항전문
- 주차넉넉
- 홍시스무디
- 양양솔비치아침
- 가족소고기외식
- 영통칠프로칠백식당
- 중학교입학수학문제
- 양양솔비치 뷔페
- 푸르지오포레피스
- Today
- Total
너와나의 관심사
백준 중앙값 구하기 문제 본문
백준 ..문제
https://www.acmicpc.net/problem/2696
핵심 key 는 priority queue 두개를 통해 각각 swap 을 하던지 해서 정렬 시켜 줘야함
|
#include <stdio.h>
#include <iostream> //cout
#include <vector>
#include <cmath>
#include <string>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <functional>
#include<algorithm>
using namespace std;
#pragma warning(disable : 4996)
int main(void){
int N, T;
int tmp;
freopen("sample_input.txt", "r", stdin);
setbuf(stdout, NULL);
cin >> T;
int n, num;
for (int i = 1; i <= T;i++ ){ //case number
cin >> n;
cout << (n + 1) / 2 << endl;
int *arr = new int[n + 1];
priority_queue<int, vector <int>, greater<int>> up; //내림 차순 // 5 4 3 2 1
priority_queue<int, vector <int>, less<int>> down; //오름 차순 // 1 2 3 4 5
cin >> arr[0];
cout << arr[0]<< " ";
down.push(arr[0]);
for (int i = 1; i < n; i++) {
cin >> arr[i];
down.push(arr[i]);
cin >> arr[++i];
up.push(arr[i]);
if (down.top() > up.top() ){
int u = down.top();
up.push(u);
down.pop();
int d = up.top();
down.push(d);
up.pop();
}
if (i % 20 == 0) cout << endl;
cout << down.top() << " ";
}
cout << endl;
delete [] arr;
}
return 0;
}