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
- 알고리즘 목차
- AI Hub
- 자료구조 목차
- 우분투
- MySQL
- mysqld.sock
- 수 만들기
- 윈도우
- 단어 수학
- 강의실2
- c#
- 영상 프레임 추출
- 알고리즘
- 걷는건귀찮아
- SWEA
- 3344
- 문자열 압축
- 원형
- 마우스 따라다니기
- 18249
- 백준
- 2020 KAKAO BLIND RECRUITMENT
- 3273
- 탄막 이동
- 토글 그룹
- 탄막 스킬 범위
- 회의실 배정
- 유니티
- 그리디알고리즘
- 탄막
Archives
- Today
- Total
와이유스토리
[그리디] 백준 1715 카드 정렬하기 C++ 본문
https://www.acmicpc.net/problem/1715
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n;
cin >> n;
int x;
priority_queue<int, vector<int>, greater<>> pq;
for(int i=0; i<n; i++) {
cin >> x;
pq.push(x);
}
long long answer = 0;
while(!pq.empty()) { // 카드 묶음 순서대로 비교X
if (pq.size() == 1) break;
int x1 = pq.top();
pq.pop();
int x2 = pq.top();
pq.pop();
answer += x1 + x2;
pq.push(x1+x2);
}
cout << answer;
return 0;
}
'코딩테스트 > 그리디|힙' 카테고리의 다른 글
[그리디] 백준 18185, 18186 라면 사기 (Small) (Large) C++ (0) | 2023.09.28 |
---|---|
[그리디] 백준 8980 택배 C++ (0) | 2023.09.27 |
[그리디] 프로그래머스 [1차] 셔틀버스 C++ (0) | 2023.03.22 |
[그리디] 백준 2839 설탕 배달 C++ (0) | 2022.02.09 |
[그리디] 백준 1931번 회의실 배정 C++ (0) | 2022.01.19 |
Comments