티스토리 뷰

PS/boj

boj)10973 - 이전 순열

kingsubin 2020. 11. 30. 11:35
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
import java.io.*;
import java.util.*;
 
public class boj_10973 {
    static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static int N;
    static int[] a;
 
    public static void main(String[] args) throws IOException {
        N = Integer.parseInt(br.readLine());
        a = new int[N];
 
        st = new StringTokenizer(br.readLine());
        for (int i = 0; i < N; i++) {
            a[i] = Integer.parseInt(st.nextToken());
        }
 
        if (prev_permutation()) {
            for (int i = 0; i < N; i++) {
                System.out.print(a[i] + " ");
            }
        } else {
            System.out.println(-1);
        }
    }
 
    static boolean prev_permutation() {
        int i = N-1;
        while (i > 0 && a[i-1<= a[i]) i-=1;
        if (i <= 0return false;
 
        int j = N-1;
        while (a[j] >= a[i-1]) j-=1;
 
        int temp = a[i-1];
        a[i-1= a[j];
        a[j] = temp;
 
        j = N-1;
        while (i < j) {
            temp = a[i];
            a[i] = a[j];
            a[j] = temp;
            i += 1; j -= 1;
        }
 
        return true;
    }
}
 
cs

 

- 수학, 브루트포스

 

- next_permutation 함수에서 반대로 뒤집은 느낌 

 

 

 

 


www.acmicpc.net/problem/10973

'PS > boj' 카테고리의 다른 글

boj)10819 - 차이를 최대로  (0) 2020.11.30
boj)10974 - 모든 순열  (0) 2020.11.30
boj)10972 - 다음 순열  (0) 2020.11.30
boj)18808 - 스티커 붙이기  (0) 2020.11.27
boj)15683 - 감시  (0) 2020.11.25