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 |
Tags
- db
- 니가 참 좋아
- 기타
- SQL 처리
- 6학년 8반 1분단
- 아이유
- 봄 사랑 벚꽃 말고
- 악보
- 천공의 시간
- nginx
- DBMS 구성요소
- 개발자
- 오라클 아키텍처
- DBMS
- oracle
- 인덱스
- 핑거스타일
- 스위트라떼
- 신입
- 데이터베이스
- Inside Of Me
- 장범준
- 말 더듬
- I'm fine thank you
- 러블리즈
- 오라클
- 레이디스코드
- IT
- index
- 슬픔의 후에
Archives
취미로 음악을 하는 개발자
[Java] 프로그래머스 스택/큐, 기능개발 본문
728x90
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 32 33 34 35 36 | import java.util.LinkedList; import java.util.Queue; // 기능개발 public class FuncDev { public static int[] solution(int[] progresses, int[] speeds) { int[] pro = progresses; // 복사본 Queue<Integer> result= new LinkedList<>(); // 배포 수 저장 int index = 0, count = 0; // index: 배포할 수 있는 기준, count: 한 번에 배포되는 수 while(index < pro.length) { // for (int i = 0; i < pro.length; i++) // 하루 진도율 처리 pro[i] += speeds[i]; if (pro[index] >= 100) { // index 작업이 배포될 수 있으면 while(index < pro.length && pro[index] >= 100) { // 다른 것도 같이 배포될 수 있는지 count++; index++; } result.offer(count); // 한 번에 배포된 개수 저장 count = 0; } } int[] answer = new int[result.size()]; for (int i = 0; i < answer.length; i++) answer[i] = result.poll(); return answer; } public static void main(String[] args) { System.out.println(solution(new int[] {93,30,55}, new int[] {1,30,5})); } } | cs |
https://programmers.co.kr/learn/courses/30/lessons/42586
'공대인 > Programmers' 카테고리의 다른 글
[Java] 프로그래머스 스택/큐, 주식가격 (0) | 2019.12.03 |
---|---|
[Java] 프로그래머스 스택/큐, 쇠막대기 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 다리를 지나는 트럭 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 프린터 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 탑 (0) | 2019.12.03 |
Comments