728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include <iostream>
#include <stdio.h>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> d, int budget) {
int answer = 0;
int sum = 0;
sort(d.begin(), d.end());
for(int i=0;i<d.size();i++)
{
sum += d[i];
answer++;
if(sum > budget)
{
sum -= d[i];
answer--;
break;
}
}
return answer;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv2] 프린터 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv2] 주식가격 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 직사각형 별찍기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] x만큼 간격이 있는 n개의 숫자 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 행렬의 덧셈 (0) | 2022.06.06 |
댓글