반응형

https://programmers.co.kr/learn/courses/30/lessons/42586

 

코딩테스트 연습 - 기능개발

프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는

programmers.co.kr

 

가장 앞에 있는 작업을 끝낼 수 있는 일 수를 구해준 뒤, 그만큼 나머지 모든 작업에도 적용하였습니다.

그 후, 연속해서 작업이 끝난 횟수만큼 건너뛰어주었습니다.

#include <string>
#include <vector>

using namespace std;

vector<int> solution(vector<int> progresses, vector<int> speeds) {
    vector<int> answer;
    
    for(int i=0; i<progresses.size();) {
        int days = (100.0 - progresses[i]) / speeds[i] + 0.99999; // 올림
        int cnt = 0;
        bool flag = true;
        for(int j=i; j<progresses.size(); j++) {
            progresses[j] += speeds[j] * days;
            if(progresses[j] < 100) flag = false;
            if(flag && progresses[j] >= 100) cnt++;
        }
        answer.push_back(cnt);
        i += cnt;
    }
    return answer;
}
반응형

'Algorithm' 카테고리의 다른 글

프로그래머스 : 스킬트리  (0) 2021.11.13
프로그래머스 : 프린터  (0) 2021.11.13
프로그래머스 : 섬 연결하기  (0) 2021.11.13
프로그래머스 : 네트워크  (0) 2021.11.13
프로그래머스 : 가사 검색  (0) 2021.11.13

+ Recent posts