250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코테 대비
- 원서읽자
- 원서읽기
- sw expert academy
- englishbook
- 알고리즘 문제
- readingbook
- the midnight library
- BFS
- PyQt
- 코테 준비
- 삼성
- nightroutine
- STUDYENGLISH
- sw expert
- MySQL
- 원서
- 코딩테스트
- 직무면접
- 코테
- swexpertacademy
- 알고리즘
- 백준
- dfs
- 쉬운 알고리즘 문제
- SQL
- D4
- 완전탐색
- English
- 프로그래머스
Archives
- Today
- Total
시나브로
[코딩테스트 연습 _ 스택/큐] 기능 개발 본문
728x90
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> progresses, vector<int> speeds) {
vector<int> answer;
int list[110]={0};
for(int i=0;i<progresses.size();i++){
list[i]=100-progresses[i];
if(list[i]%speeds[i]!=0)
list[i]=list[i]/speeds[i]+1;
else
list[i]=list[i]/speeds[i];
}
for(int i=0;i<progresses.size();){
int count=1;
int box=list[i++];
while(box>=list[i]&&progresses.size()>i){
i++;
count++;
}
answer.push_back(count);
}
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[ 프로그래머스 ] 멀쩡한 사각형 (0) | 2020.04.04 |
---|---|
[ 프로그래머스 ] 124 나라의 숫자 (0) | 2020.04.04 |
[코딩테스트 연습 _ 스택/큐] 다리를 지나는 트럭 (0) | 2020.03.13 |
[코딩테스트 연습 _ 스택/큐] 탑 (0) | 2020.03.13 |
[SQL 최고점 Kit _ JOIN] 보호소에서 중성화한 동물 (0) | 2020.01.07 |
Comments