Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- 투 포인터
- c++
- 그리디 알고리즘
- Unreal Engine 5
- Team Fortress 2
- 스택
- 트리
- 유니티
- VR
- 우선순위 큐
- DFS
- 누적 합
- 백트래킹
- 자료구조
- BFS
- 재귀
- 그래프
- 수학
- 정렬
- 유니온 파인드
- 구현
- 백준
- 다익스트라
- XR Interaction Toolkit
- ue5
- 브루트포스
- 시뮬레이션
- 다이나믹 프로그래밍
- 문자열
Archives
- Today
- Total
1일1알
백준 1655번 가운데를 말해요 C++ 본문
multiset을 이용해서 자동으로 정렬되게 하고, 입력에 따라서 iterator을 조절해 가면서 문제를 해결하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
multiset<int> s;
auto it = s.begin();
for (int i = 1; i <= n; i++) {
int input;
cin >> input;
s.insert(input);
if (s.size() == 1) it = s.begin();
else {
if (input < *it) --it;
}
if (i % 2 == 1 && s.size() != 1) {
++it;
}
cout << *it << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 2193번 이친수 C++ (0) | 2022.05.26 |
---|---|
백준 17144번 미세먼지 안녕! C++ (0) | 2022.05.25 |
백준 16235번 나무 재테크 C++ (0) | 2022.05.23 |
백준 12100번 2048 (Easy) C++ (0) | 2022.05.21 |
백준 1600번 말이 되고픈 원숭이 C++ (0) | 2022.05.20 |