반응형
#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(int i=0;i<d.size();i++)
{
budget-=d[i]; //budget에서 작은값부터 빼기
if(budget<0) //0보다작아지면 반복문 종료
break;
else
answer++;
}
return answer;
}
반응형
'Programming > Programmers' 카테고리의 다른 글
프로그래머스 같은 숫자는 싫어 [c++] (0) | 2023.04.04 |
---|---|
프로그래머스 SQL [SUM,MAX,MIN] (0) | 2022.05.06 |
프로그래머스 소수만들기 [c++] [Summer/Winter Coding 2018] (0) | 2022.05.02 |
프로그래머스 SQL [IS NULL] (0) | 2022.05.01 |
프로그래머스 1차다트게임 [c++] [2018카카오] (0) | 2022.04.19 |