Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 컴퓨터공학 #자료구조 #스택 #c++ #알고리즘 #백준문제풀이
- HTML #CSS
- 컴퓨터공학 #c #c언어 #문자열입력
- BOJ #컴퓨터공학 #C++ #알고리즘 #자료구조
- 컴퓨터공학 #Java #자바 #클래스 #객체 #인스턴스
- 잔
Archives
- Today
- Total
영벨롭 개발 일지
[백준 BOJ][C++]10972번 다음 순열 풀이: std::next_permutation() 본문
https://www.acmicpc.net/problem/10972
이 문제는 c++ STL next_permutation을 사용하면 쉽게 해결할 수 있습니다.
next_permutation 사용법 -> https://iridescent-zeal.tistory.com/97
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main(void) {
vector<int> arr;
int N;
cin >> N;
for (int i = 0; i < N; i++) {
int x;
cin >> x;
arr.push_back(x);
}
if (next_permutation(arr.begin(), arr.end())) {
for (auto element : arr)
cout << element << " ";
cout << endl;
}
else {
cout << -1;
}
return 0;
}
반응형
'알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
[백준 BOJ][C++]9375번 패션왕 신해빈 풀이: hash (0) | 2022.03.31 |
---|---|
[백준 BOJ][C++]10819번 차이를 최대로 풀이: std::next_permutation() (0) | 2022.03.31 |
[백준 BOJ][C++]15663번 N과 M(9) 풀이: 브루트 포스 & DFS (0) | 2022.03.29 |
[백준 BOJ][C++]13023번 ABCDE 풀이: 그래프 & DFS (0) | 2022.03.28 |
[백준 BOJ][C++]15650번 N과 M(2) 풀이: 브루트 포스 & DFS (0) | 2022.03.28 |