티스토리 뷰

반응형


#. Problem

* The copyright in this matter is in BOJ


#. Resolution Process

  1. Read and understand problem

  2. Redefine the problem + abstract

  3. Create solution plan (select Algorithm, Data structure)

  4. Prove the plan (check performance time and usage memory)

  5. Carry out the plan

  6. Look back on the plan and find a way to improve it


#. Solve


NextPermutation 을 구현하는 문제이다.


#. Code

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
53
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
 
public class BOJ10972 {
 
    static int N, nums[];
 
    public static void main(String[] args) throws IOException {
 
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st;
 
        N = Integer.parseInt(br.readLine());
        nums = new int[N];
 
        st = new StringTokenizer(br.readLine());
        for (int i = 0; i < N; i++)
            nums[i] = Integer.parseInt(st.nextToken());
 
        if (nextPermutation()) {
            for (int i = 0; i < N; i++) {
                System.out.print(nums[i] + " ");
            }
        }
        else
            System.out.println("-1");
    }
 
    public static boolean nextPermutation() {
        int i = N - 1;
        while (i > 0 && nums[i - 1>= nums[i]) i--;
        if (i == 0return false;
 
        int j = N - 1;
        while(nums[i-1>= nums[j]) j--;
        
        swap(i-1, j);
        
        int k = N-1;
        while(i<k) swap(i++, k--);
        
        return true;
    }
    
    public static void swap(int i, int j) {
        int temp = nums[i];
        nums[i] = nums[j];
        nums[j] = temp;
    }
}
 
cs


line 33) 꼭대기 찾기

    자신보다 작은 수를 찾을 때까지 동작

line 34) 마지막 순열의 상태이면 다음 순열이 없음

line 37) i-1 위치와 교환할 다음 단계 큰 수를 뒷쪽에서부터 찾기

          자신보다 작은 수를 찾을 때까지 동작

          i-1보다 큰 j는 항상 존재(꼭짓점)

line 39) i-1위치의 값과 j 위치의 값 교환

line 42) i위치부터 맨 뒤까지 오름차순 정렬

반응형
댓글
최근에 올라온 글
최근에 달린 댓글
링크
Total
Today
Yesterday