지우너

[코드트리] 숫자 합치기 C++ 본문

Problem Solving

[코드트리] 숫자 합치기 C++

지옹 2024. 9. 6. 21:01

문제

https://www.codetree.ai/missions/8/problems/%08merge-numbers?&utm_source=clipboard&utm_medium=text

 

코드트리 | 코딩테스트 준비를 위한 알고리즘 정석

국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.

www.codetree.ai

 

코드

#include <iostream>
#include <queue>
#include <algorithm>

using namespace std;

int n;
priority_queue<int> pq;

int main() {
    cin >> n;
    for(int i=0; i<n; ++i){
        int num;
        cin >> num;
        pq.push(-num);
    }

    int answer=0;
    while(n>1){
        int lhs = -pq.top();
        pq.pop();
        int rhs = -pq.top();
        pq.pop();

        int sum = lhs+rhs;
        answer+= sum;
        pq.push(-sum);
        n--;
    }
    cout << answer << '\n';
    return 0;
}