상세 컨텐츠

본문 제목

[Level1.] 예산 C++

C++/Programmers

by J2on 2024. 2. 15. 20:13

본문

<< 문제 >>

 

https://school.programmers.co.kr/learn/courses/30/lessons/12982

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

<< 코드 >>

#include <iostream>
#include <stdio.h>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int solution(vector<int> d, int budget) {
     int answer = 0;
    sort(d.begin(), d.end());
    
    for(auto& a : d){
        budget -= a;
        if(budget >= 0 ){
            answer++;
        }
    }
    
   
    return answer;
}

 

크게 생각할 부분이 없는 것이...

 

가장 많은 부서에 물품을 제공하기 위해선

가장 적은 돈을 필요로 하는 부서의 물건부터 구매해 주면 됩니다.  

 

정렬만 잘 하면 너무나 쉬운 문제

 

<< GitHub >>

https://github.com/J2on/StudyAlgorithm_Part2/tree/main/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4/1/12982.%E2%80%85%EC%98%88%EC%82%B0

'C++ > Programmers' 카테고리의 다른 글

[Level2.] 튜플 C++  (0) 2024.02.22
[Level2.] 숫자 변환하기 C++  (0) 2024.02.18
[Level2.] 광물 캐기 C++  (0) 2024.02.05
[Level2.] 귤 고르기 C++  (0) 2024.02.04
[Level2.] 구명보트 C++  (0) 2024.02.04

관련글 더보기

댓글 영역