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 |
Tags
- VR
- 유니온 파인드
- 유니티
- DFS
- 트리
- 다이나믹 프로그래밍
- 시뮬레이션
- 구현
- 그리디 알고리즘
- 알고리즘
- 수학
- 브루트포스
- 문자열
- 우선순위 큐
- 백준
- 다익스트라
- Unreal Engine 5
- c++
- 백트래킹
- 재귀
- 스택
- XR Interaction Toolkit
- ue5
- 자료구조
- 그래프
- 정렬
- BFS
- Team Fortress 2
- 누적 합
- 투 포인터
Archives
- Today
- Total
목록다음 순열 C++ (1)
1일1알
백준 10972번 다음 순열 C++
https://www.acmicpc.net/problem/10972 10972번: 다음 순열 첫째 줄에 입력으로 주어진 순열의 다음에 오는 순열을 출력한다. 만약, 사전순으로 마지막에 오는 순열인 경우에는 -1을 출력한다. www.acmicpc.net stl의 next_permutation을 사용하면 쉽게 풀 수 있다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int n; vector v; int main() ..
알고리즘
2023. 5. 28. 12:34