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
- Unreal Engine 5
- 재귀
- 수학
- 그래프
- 구현
- 브루트포스
- 다익스트라
- DFS
- ue5
- 유니티
- 그리디 알고리즘
- 알고리즘
- 백준
- Team Fortress 2
- 문자열
- 누적 합
- XR Interaction Toolkit
- 백트래킹
- 자료구조
- VR
- 시뮬레이션
- BFS
- 우선순위 큐
- 다이나믹 프로그래밍
- 트리
- 스택
- 투 포인터
- c++
- 유니온 파인드
- 정렬
Archives
- Today
- Total
1일1알
백준 1039번 교환 C++ 본문
숫자를 몇번 바꿨는지 정보까지 이용해서 방문 배열을 2차원으로 사용해서 bfs를 통해 풀었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, k;
vector<vector<bool>> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k;
found = vector<vector<bool>>(1000001, vector<bool>(k + 1, false));
queue<pair<int, int>> q;
q.push({ n,0 });
found[n][0] = true;
int ans = -1;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.second >= k) {
ans = max(ans, curr.first);
}
string currStr = to_string(curr.first);
if (curr.second < k) {
for (int i = 0; i < currStr.length(); i++) {
for (int j = i + 1; j < currStr.length(); j++) {
string nextStr = currStr;
::swap(nextStr[i], nextStr[j]);
if (nextStr[0] == '0') continue;
int nextNum = stoi(nextStr);
if (found[nextNum][curr.second + 1]) continue;
q.push({ nextNum,curr.second + 1 });
found[nextNum][curr.second + 1] = true;
}
}
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 1707번 이분 그래프 C++ (0) | 2022.08.08 |
---|---|
백준 1976번 여행 가자 C++ (0) | 2022.08.07 |
백준 21924번 도시 건설 C++ (0) | 2022.08.05 |
백준 10710번 실크로드 C++ (0) | 2022.08.03 |
백준 17142번 연구소 3 C++ (0) | 2022.08.02 |