티스토리 뷰
백준 소스코드 [C++] 1525 퍼즐
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;
queue<string> q;
set<string> chk;
int dx[4] = {-1, 1, -3, 3};
string str, ds;
int res=0;
void bfs(string s){
int idx;
string oldstr,newstr;
chk.insert(s);
q.push(s);
while (!q.empty())
{
int size = q.size();
for (int i = 0; i < size; i++)
{
oldstr = q.front();
q.pop();
if (oldstr == "123456780")
{
cout << res;
return;
}
idx = oldstr.find("0");
for (int i = 0; i < 4; i++)
{
int swapIndex = idx + dx[i];
if (swapIndex < 0 || swapIndex >= 9 || (idx % 3 == 0 && i == 0) || (idx % 3 == 2) && i == 1)
{
continue;
}
newstr = oldstr;
swap(newstr[idx], newstr[swapIndex]);
if (chk.count(newstr) == 0)
{
chk.insert(newstr);
q.push(newstr);
}
}
}
res++;
}
cout << "-1";
return;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
for (int i = 0; i < 9; i++)
{
cin >> ds;
str += ds;
}
bfs(str);
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 1436 영화감독 숌 (0) | 2021.03.09 |
---|---|
백준 소스코드 [C++] 수열과 쿼리 26 (0) | 2021.03.07 |
백준 소스코드 [C++] 1253 좋다 (0) | 2021.03.06 |
백준 소스코드 [C++] 4195 친구 네트워크 (0) | 2021.03.06 |
백준 소스코드 [C++] 11780 플로이드 2 (0) | 2021.03.06 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- mach-o
- 부스트캠프 6기
- State Restoration
- 네트워크 유량
- 최대 매칭
- WWDC19
- WWDC21
- 최단경로문제
- observeOn
- 강한 순환 참조
- CompositionalLayout
- 벨만포드 시간복잡도
- WWDC16
- Testable
- 포드 풀커슨 알고리즘
- 컴퓨터 추상화
- 최단경로 문제
- WWDC17
- 에드몬드 카프 알고리즘
- 네트워크 플로우
- test coverage
- 코딩대회
- 최단경로 알고리즘
- IOS
- MeTal
- rxswift
- CPU와 Memory
- 다익스트라 시간복잡도
- 벨만포드 알고리즘
- HIG
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함