[BaekJoon] 1966 프린터 큐 (java)
🔗 문제 링크
https://www.acmicpc.net/problem/1966
👨🏻💻 내가 작성한 코드
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int testCaseNum = sc.nextInt();
ArrayList<Integer> queue = new ArrayList<>();
for (int i=0; i<testCaseNum; i++) {
int count = 0;
queue.clear();
int inputNum = sc.nextInt();
int position = sc.nextInt();
for(int j=0; j< inputNum; j++) {
queue.add(sc.nextInt());
}
int len = queue.size();
while(queue.size() != 0) {
int max = Collections.max(queue);
int removeNum = queue.remove(0);
if (removeNum != max) {
queue.add(removeNum);
if (position == 0) position = queue.size()-1;
else position--;
}
else {
count++;
if (position == 0) {
System.out.println(count);
break;
}
position--;
}
}
}
}
}
Author And Source
이 문제에 관하여([BaekJoon] 1966 프린터 큐 (java)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@seongwon97/BaekJoon-1966-프린터-큐-java저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)