Notice
Recent Posts
Recent Comments
Link
궤도
[백준] 10972번 : 다음 순열 본문
문제
풀이
myunji.tistory.com/19?category=1154147
비슷한 문제를 푼 적 있다.
이때는 알고리즘을 막 공부할 떄라 그렇게 효율적인 코드를 짠 것 같진 않지만 어떤식으로 푸는지에 대한 풀이는 알고 있으니까
www.cplusplus.com/reference/algorithm/next_permutation/?kw=next_permutation
난 이걸 쓰도록 하겠다. 정말 C++엔 별게 다 있는 것 같다.
소스코드
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int N, input;
vector<int> arr;
cin >> N;
for (int i = 0; i < N; i++) {
cin >> input;
arr.push_back(input);
}
if (next_permutation(arr.begin(), arr.end())) { //다음 순열이 있다면
for (int i = 0; i < N; i++)
cout << arr[i] << ' ';
} else //없다면
cout << -1;
}
Comments