10974 : 모든 순열

풀이

stl 쪼아~~~

코드

#include <cstdio>
#include <algorithm>
int main() {
    int n, a[9];
    scanf("%d", &n);
    for (int i = 0; i < n; i++) a[i] = i+1;
    do {
        for (int i = 0; i < n; i++) printf("%d ", a[i]);
        puts("");
    } while (std::next_permutation(a, a+n));
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-08-28 00:02

Read more posts by this author