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
- 재귀
- 브루트포스
- ue5
- VR
- 백트래킹
- 투 포인터
- 누적 합
- 수학
- 구현
- 백준
- 시뮬레이션
- Unreal Engine 5
- DFS
- XR Interaction Toolkit
- 스택
- 유니티
- 다이나믹 프로그래밍
- c++
- Team Fortress 2
- 그래프
- 트리
- 정렬
- 그리디 알고리즘
- 알고리즘
- 우선순위 큐
- 유니온 파인드
- 문자열
- BFS
- 자료구조
- 다익스트라
Archives
- Today
- Total
1일1알
백준 19638번 센티와 마법의 뿅망치 C++ 본문
https://www.acmicpc.net/problem/19638
우선순위 큐
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
priority_queue<int> pq;
int n, h, t;
cin >> n >> h >> t;
for (int i = 0; i < n; i++) {
int hh;
cin >> hh;
pq.push(hh);
}
int cnt = 0;
while (true) {
if (pq.top() == 1 || pq.top() < h) break;
if (cnt >= t) break;
int curr = pq.top();
pq.pop();
pq.push(curr / 2);
cnt++;
}
if (pq.top() < h) {
cout << "YES\n" << cnt;
}
else {
cout << "NO\n" << pq.top();
}
}
'알고리즘' 카테고리의 다른 글
백준 13265번 색칠하기 C++ (0) | 2023.02.14 |
---|---|
백준 4097번 수익 C++ (0) | 2023.02.13 |
백준 21921번 블로그 C++ (0) | 2023.02.11 |
백준 2194번 유닛 이동시키기 C++ (0) | 2023.02.09 |
백준 1911번 흙길 보수하기 C++ (0) | 2023.02.08 |