-
boj)10972 - 다음 순열PS/boj 2020. 11. 30. 11:0212345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152import java.io.*;import java.util.StringTokenizer;public class boj_10972 {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 < a.length; i++) {a[i] = Integer.parseInt(st.nextToken());}if (next_Permutation(a, N)) {for (int i = 0; i < N; i++) {System.out.print(a[i] + " ");}} else {System.out.println(-1);}}static boolean next_Permutation(int[] a, int n) {int i = n-1;while (i > 0 && a[i-1] >= a[i]) i-=1; // 1.if (i <= 0) return false; // 마지막 순열int j = n-1; // 2.while (a[j] <= a[i-1]) j-=1;// 3. swap(a[i-1], a[j]);int temp = a[i-1];a[i-1] = a[j];a[j] = temp;j = n-1; // 4.while (i < j) {// swap(a[i], a[j]);temp = a[i];a[i] = a[j];a[j] = temp;i += 1; j -= 1;}return true;}}
cs - 수학, 브루트포스
- 다음 순열을 구하는 next_permutation 에 대해서 혼자서는 구현할 방법이 생각이 안났다.
- 이제 배웠으니까 써먹을 수 있겠다.
* Next Permutation
- A[i-1] < A[i] 를 만족하는 가장 큰 i를 찾는다.
- j>=i이면서 A[j]>A[I-1]을 만족하는 가장 큰 j를 찾는다.
- A[i-1]과 A[j]를 swap한다.
- A[i]부터 순열을 뒤집는다.
'PS > boj' 카테고리의 다른 글
boj)10974 - 모든 순열 (0) 2020.11.30 boj)10973 - 이전 순열 (0) 2020.11.30 boj)18808 - 스티커 붙이기 (0) 2020.11.27 boj)15683 - 감시 (0) 2020.11.25 boj)1182 - 부분수열의 합 (0) 2020.11.23