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
- 수학
- 트리
- 유니온 파인드
- DFS
- 투 포인터
- Team Fortress 2
- 브루트포스
- VR
- 알고리즘
- 백트래킹
- XR Interaction Toolkit
- 다익스트라
- 시뮬레이션
- 그리디 알고리즘
- 백준
- 자료구조
- 누적 합
- Unreal Engine 5
- ue5
- 스택
- BFS
- 유니티
- 문자열
- 정렬
- c++
- 구현
- 그래프
- 재귀
- 우선순위 큐
- 다이나믹 프로그래밍
Archives
- Today
- Total
1일1알
백준 23843번 콘센트 C++ 본문
https://www.acmicpc.net/problem/23843
1. 전자기기들을 내림차순으로 정렬
2. 작은 수가 제일 먼저 뽑히게 하는 우선순위 큐 생성
3. 앞에서 m개만큼 전자기기를 우선순위 큐에 삽입
4. m ~ n-1까지 전자기기들의 시간을 우선순위 큐의 top을 뽑은 값에 더하고 다시 우선순위 큐에 삽입
( 일이 가장 빨리 끝난 플러그에 바로 일 할당)
5. 우선순위 큐를 pop하면서 가장 마지막에 남은 원소가 답이다.
#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 n, m;
vector<int> devices;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
devices = vector<int>(n);
for (int i = 0; i < n; i++) {
cin >> devices[i];
}
sort(devices.begin(), devices.end(), greater<int>());
priority_queue<int, vector<int>, greater<int>> pq;
for (int i = 0; i < m; i++) {
if (i >= n) break;
pq.push(devices[i]);
}
for (int i = m; i < n; i++) {
int pop = pq.top();
pq.pop();
pop += devices[i];
pq.push(pop);
}
for (int i = 0; i < m - 1; i++) {
pq.pop();
}
cout << pq.top();
};
'알고리즘' 카테고리의 다른 글
백준 2799번 블라인드 C++ (0) | 2023.05.02 |
---|---|
백준 4108번 지뢰찾기 C++ (0) | 2023.04.30 |
백준 5464번 주차장 C++ (0) | 2023.04.28 |
백준 1448번 삼각형 만들기 C++ (0) | 2023.04.26 |
백준 20006번 랭킹전 대기열 C++ (0) | 2023.04.25 |