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 | 31 |
Tags
- 단어 수학
- 걷는건귀찮아
- 마우스 따라다니기
- mysqld.sock
- 우분투
- 유니티
- 원형
- 영상 프레임 추출
- 백준
- 알고리즘
- 3273
- MySQL
- 자료구조 목차
- 알고리즘 목차
- 문자열 압축
- 탄막
- SWEA
- 탄막 이동
- c#
- 탄막 스킬 범위
- 그리디알고리즘
- 수 만들기
- 18249
- 3344
- 회의실 배정
- 2020 KAKAO BLIND RECRUITMENT
- 토글 그룹
- 윈도우
- 강의실2
- AI Hub
Archives
- Today
- Total
와이유스토리
[우선순위큐] 백준 19638 센티와 마법의 뿅망치 C++ 본문
https://www.acmicpc.net/problem/19638
#include<iostream>
#include<queue>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
int n, c, t, max = 0, count = 0, temp;
priority_queue<int> q;
cin >> n >> c >> t;
for (int i = 0; i < n; i++)
{
cin >> temp;
q.push(temp);
}
for (int i = 0; i < t; i++)
{
max = q.top();
if (max >= c)
{
if (max != 1)
{
max /= 2;
q.pop();
q.push(max);
count++;
}
}
else
{
printf("YES\n");
printf("%d", count);
return 0;
}
}
if (q.top() < c)
{
printf("YES\n");
printf("%d", count);
}
else
{
printf("NO\n");
printf("%d", q.top());
}
return 0;
}
1. 첫 시도 => 시간 초과
#include<iostream>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
int n, c, t, max = 0, count = 0;
cin >> n >> c >> t;
int *h = new int[n];
for (int i = 0; i < n; i++)
{
cin >> h[i];
}
for (int i = 0; i < t; i++)
{
for (int j = 0; j < n; j++)
{
if (h[max] < h[j])
{
max = j;
}
}
if (h[max] > c)
{
h[max] /= 2;
count++;
}
else {
printf("NO\n");
printf("%d", h[max]);
return 0;
}
}
if (h[max] <= c)
{
printf("NO\n");
printf("%d", h[max]);
return 0;
}
printf("YES\n");
printf("%d", count);
}
'코딩테스트 > 그리디|힙' 카테고리의 다른 글
[그리디] 백준 1715 카드 정렬하기 C++ (0) | 2023.09.27 |
---|---|
[그리디] 프로그래머스 [1차] 셔틀버스 C++ (0) | 2023.03.22 |
[그리디] 백준 2839 설탕 배달 C++ (0) | 2022.02.09 |
[그리디] 백준 1931번 회의실 배정 C++ (0) | 2022.01.19 |
[그리디, 우선순위큐] 백준 1379번 강의실2 C++ (0) | 2022.01.18 |
Comments