문제 출처: https://www.acmicpc.net/problem/11866



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.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
 
public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String[] input = reader.readLine().split(" ");
        int N = Integer.parseInt(input[0]);
        int M = Integer.parseInt(input[1])-1;
        LinkedList<String> queue = new LinkedList<>();
        StringBuilder builder = new StringBuilder();
        builder.append("<");
        
        for(int i=; i<N ; i++)
            queue.add(""+(i+1)); // 큐에 순서 값 넣기
        
        while(!queue.isEmpty()){
            int tempM = (queue.size()>M) ? M : M%queue.size(); // 큐의 사이즈가 점점 작아지므로 M값을 사이즈에 맞게 변환
            
            while(tempM-- > 0){ // 제거하려는 순서가 나올 때까지 뒤로 보냄
                String tempVal = queue.poll();
                queue.add(tempVal);
            }
            
            builder.append(queue.poll()); // 큐에서 제거한 값 출력
            
            if(!queue.isEmpty())
                builder.append(", ");
            else
                builder.append(">");
        }
        
        System.out.println(builder);
    }
}
cs


'Algorithm' 카테고리의 다른 글

백준 7569번: 토마토  (0) 2018.10.26
백준 7576번: 토마토  (0) 2018.10.26
백준 1966번: 프린터 큐  (0) 2018.10.25
백준 10845번: 큐  (0) 2018.10.25
백준 6064번: 카잉 달력  (0) 2018.10.24

+ Recent posts