백준 10973번 : 이전 순열

반응형

https://www.acmicpc.net/problem/10973

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main {
    StringBuilder sb = new StringBuilder();
    int n;
    int[] inputNum;
    boolean[] visit;
    public void solution() throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = Integer.parseInt(br.readLine());
        StringTokenizer st = new StringTokenizer(br.readLine());
        inputNum = new int[n];
        visit = new boolean[n];
        for(int i=0; i<n; i++){
            inputNum[i] = Integer.parseInt(st.nextToken());
        }

        if(permutation(inputNum)){
            for(int a : inputNum){
                sb.append(a).append(" ");
            }
        }else{
            sb.append("-1");
        }
        System.out.println(sb);
    }

    public boolean permutation(int[] a){
        int i = a.length-1;
        while(i>0 && a[i-1]<=a[i]){
            i--;
        }

        if(i<=0) return false;

        int j = a.length-1;
        while(j>=i && a[i-1]<=a[j]){
            j--;
        }

        int temp = a[j];
        a[j] = a[i-1];
        a[i-1] = temp;

        j = a.length-1;
        while(i<j){
            temp = a[i];
            a[i] = a[j];
            a[j] = temp;
            i++;
            j--;
        }
        return true;
    }


    public static void main(String args[]) throws IOException {
        new Main().solution();
    }
}

다음 순열(https://mokggang.tistory.com/32)을 찾는 방법에서 내림차순과 오름차순을 바꿔서 찾으면 된다.

부등호를 바꿔준다.  > -> < 

반응형

'개발 > 알고리즘' 카테고리의 다른 글

백준 10819번 : 차이를 최대로  (0) 2023.01.18
백준 10974번 : 모든 순열  (0) 2023.01.18
백준 10972번 : 다음 순열  (0) 2023.01.18
백준 2529번 : 부등호  (0) 2023.01.16
백준 15661번 : 링크와 스타트  (0) 2023.01.16