-
boj)10974 - 모든 순열PS/boj 2020. 11. 30. 12:161234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950import java.io.*;public class boj_10974 {static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));static int N;static int[] a;public static void main(String[] args) throws IOException {N = Integer.parseInt(br.readLine());a = new int[N];for (int i = 0; i < N; i++) {a[i] = i+1;}do {for (int i = 0; i < N; i++) {bw.write(a[i] + " ");}bw.newLine();} while (next_permutation(a, N)) ;bw.flush();bw.close();}static boolean next_permutation(int[] a, int n) {int i = n-1;while (i > 0 && a[i-1] >= a[i]) i-=1;if (i <= 0) return 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 함수로 처음부터 돌리면 됨
'PS > boj' 카테고리의 다른 글
boj)10971 - 외판원 순회 2 (0) 2020.11.30 boj)10819 - 차이를 최대로 (0) 2020.11.30 boj)10973 - 이전 순열 (0) 2020.11.30 boj)10972 - 다음 순열 (0) 2020.11.30 boj)18808 - 스티커 붙이기 (0) 2020.11.27