반응형
#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 i=0;
sort(d.begin(),d.end());
while(answer<=budget and i<=d.size()){
answer+=d[i];
i++;
cout<<answer<<" ";
}
return i-1;
}
반응형
'컴퓨터공학' 카테고리의 다른 글
pip/apt/conda 차이점 (0) | 2022.01.05 |
---|---|
[프로그래머스, C++] 자릿수 더하기 (0) | 2021.09.26 |
[프로그래머스, C++] 없는 숫자 더하기 (0) | 2021.09.26 |
[프로그래머스, C++] 수박수박수박수박수박수? (0) | 2021.09.19 |
[프로그래머스/ C++]두 정수 사이의 합 (0) | 2021.09.19 |