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
- Inside Of Me
- 스위트라떼
- 오라클 아키텍처
- 슬픔의 후에
- 악보
- 인덱스
- 기타
- 니가 참 좋아
- 장범준
- IT
- SQL 처리
- 6학년 8반 1분단
- db
- 천공의 시간
- 아이유
- 레이디스코드
- nginx
- 데이터베이스
- DBMS 구성요소
- 신입
- 봄 사랑 벚꽃 말고
- DBMS
- 핑거스타일
- I'm fine thank you
- index
- 개발자
- oracle
- 러블리즈
- 오라클
- 말 더듬
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedList; import java.util.Queue; // 프린터 public class Printer { public static int solution(int[] priorities, int location) { Queue<Integer> q = new LinkedList<>(); // 대기목록 ArrayList<Integer> priority = new ArrayList<>(); // 대기목록 인덱스 for (int i = 0; i < priorities.length; i++) { q.offer(priorities[i]); priority.add(i); } Iterator<Integer> it; int count = 0, element; // count: 몇 번째로 인쇄, element: 검색용 원소 int max = q.peek(); // max: 가장 큰 중요도 int index, temp; // index: 기준이 되는 대기목록 인덱스, temp: 기준이 되는 대기목록 while(!q.isEmpty()) { //System.out.println("size: " + q.size()); index = priority.get(0); // 검색할 원소를 저장해두고 남은 원소들과 비교 temp = q.poll(); priority.remove(0); // poll과 함께 List에서도 제거 //System.out.println("temp: " + temp + " index: " + index + " count: " + count + " max " + max); it = q.iterator(); while (it.hasNext()) { // 남은 원소들과 비교 element = it.next(); if (temp < element) {// 중요도가 더 큰 것이 있으면 q.offer(temp); // 현재 대기목록을 맨 뒤로 옮김 priority.add(index); max = element; break; } } if (temp == max) { // 인쇄를 처리하면 count++; if (index == location) // 현재 인쇄되는 것이 원하는 문서인지 return count; max = q.peek(); // 인쇄된 것을 제외하고 다시 max 값 설정 } } return count; } public static void main(String[] args) { System.out.println(solution(new int[] { 1,1,9,1,1,1}, 0)); } } | cs |
https://programmers.co.kr/learn/courses/30/lessons/42587
'공대인 > 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