관리 메뉴

fatalite

C++ / 최소값 만들기 본문

코딩 인터뷰/프로그래머스

C++ / 최소값 만들기

fataliteforu 2023. 4. 22. 07:47

Problem

단계 : 2단계 (어떻게 이게 전에 푼 구현 문제랑 같은 단계지..)

분류 : 정렬

Solution

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int solution(vector<int> A, vector<int> B)
{
    int answer = 0;

    sort(A.begin(),A.end());
    sort(B.begin(),B.end());
    
    for(int i : A){
        answer = answer + i * B.back();
        B.pop_back();
    }

    return answer;
}

'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글

C++ / 영어 끝말잇기  (0) 2023.05.07
C++ / 숫자의 표현  (0) 2023.04.24
C++ / 이진 변환 반복하기  (0) 2023.04.24
C++ / 올바른 괄호  (0) 2023.04.22
C++ / 과제 진행하기  (0) 2023.04.19