프로그래머스 - lv2 기능개발
기능개발
문제는 프로그래머스에서 확인 할 수 있다.
✔ 접근방법
스택을 이용. (아래 코드에서는 vector를 이용하여 스택처럼 사용)
- 맨 앞 원소가 100보다 커지면, 앞에서부터 차례로 100이상인 수를 체크함
✔ 코드
#include <string>
#include <vector>
#include <iostream>
using namespace std;
vector<int> solution(vector<int> progresses, vector<int> speeds) {
vector<int> answer;
int num=0;
int size = progresses.size();
while( !progresses.empty() ){
for(int i=progresses.size()-1; i>=0; i--){
progresses[i] += speeds[i];
// 맨앞 원소가 100보다 커지면, 앞에서부터 차례로 100이상인 수를 체크함
if( progresses.front() >= 100 ){
num=0;
while( !progresses.empty() && progresses.front() >= 100 ){
num++;
progresses.erase(progresses.begin());
speeds.erase(speeds.begin());
}
answer.push_back(num);
}
}
}
return answer;
}
int main(void){
vector<int> progresses = {95, 90, 99, 99, 80, 99};
vector<int> speeds = {1, 1, 1, 1, 1, 1};
vector<int> ret;
ret = solution(progresses, speeds);
for(int i=0; i<ret.size(); i++){
cout << ret[i] << " " ;
}
cout << endl;
return 0;
}
👍 참고 사이트
Author And Source
이 문제에 관하여(프로그래머스 - lv2 기능개발), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aszxvcb/프로그래머스-lv2-기능개발저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)