Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- dataasset
- 언리얼가비지컬렉터
- UML관련
- 애셋로드
- 크리티컬섹션
- unorder_map
- 자료구조
- 약참조
- 람다사용정렬
- 알고리즘
- UE_LOG
- UELOG
- C++최적화
- BFS
- 정렬알고리즘
- 스마트포인터
- UE4 커스텀로그
- moreeffectiveC++
- 언리얼엔진구조체
- 정렬
- 강참조
- C++
- 람다
- enumasByue
- 데이터애셋
- 선택정렬
- 델리게이트
- 프로그래머스
- map
- stl
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 기능개발 본문
programmers.co.kr/learn/courses/30/lessons/42586
#include <string>
#include <vector>
#include <math.h>
using namespace std;
vector<int> solution(vector<int> progresses, vector<int> speeds) {
// progresses 작업의 진도 // 길이 100이하
// speeds 각 작업의 속도 // 길이 100이하
// 진도<100
//속도 <=100
vector<int> answer;
vector<int> ProgreDay;
//각 프로세스가 몇일 걸리는지
for (int i = 0; i < progresses.size(); i++)
{
int remainJob = (100 - progresses[i]) % speeds[i]; //남은 작업량
int day = (100 - progresses[i]) / speeds[i]; //작업기간
if (remainJob != 0) //남은 작업이 나누어떨이지지 않으면 하루추가 해야함
{
day++;
}
ProgreDay.push_back(day);
}
//작업걸리는기간 비교하여 뒤에 작업보다 오래걸리면 종합하기
int maxDay = ProgreDay[0];
int cntDay = 1;
for (int i = 1; i < ProgreDay.size(); i++)
{
if (maxDay >= ProgreDay[i])
{
cntDay++;
}
else
{
answer.push_back(cntDay);
cntDay = 1;
maxDay = ProgreDay[i];
}
}
answer.push_back(cntDay);
return answer;
}
'Coding Test - cpp > Stack, Queue' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 올바른 괄호 (C++) (0) | 2023.11.17 |
---|---|
[프로그래머스 lv 1 ] - [1차] 다트 게임 (0) | 2021.10.01 |
[프로그래머스 lv 2 ] - 짝지어 제거하기 (0) | 2021.07.14 |
[프로그래머스 lv 1 ] - 크레인 인형뽑기 게임 (0) | 2021.04.20 |