반응형
https://programmers.co.kr/learn/courses/30/lessons/12982
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#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 result = 0;
sort(d.begin(), d.end());
for (size_t i=0; i< d.size(); i++){
result += d[i];
if (result <= budget){
answer++;
}
else {
break;
}
}
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C] 2016년 (0) | 2022.03.16 |
---|---|
[프로그래머스][C++] 두 개 뽑아서 더하기 (0) | 2022.03.16 |
[프로그래머스][C++] 3진법 뒤집기 (0) | 2022.03.16 |
[프로그래머스][C++] 약수의 개수와 덧셈 (0) | 2022.03.16 |
[프로그래머스][C++] 실패율 (0) | 2022.03.16 |