티스토리 뷰
1525번: 퍼즐
세 줄에 걸쳐서 표에 채워져 있는 아홉 개의 수가 주어진다. 한 줄에 세 개의 수가 주어지며, 빈 칸은 0으로 나타낸다.
www.acmicpc.net
백준 소스코드 [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
- 최단경로 알고리즘
- 포드 풀커슨 알고리즘
- 다익스트라 시간복잡도
- 코딩대회
- 강한 순환 참조
- 벨만포드 시간복잡도
- 네트워크 플로우
- 컴퓨터 추상화
- 최대 매칭
- 부스트캠프 6기
- State Restoration
- CPU와 Memory
- CompositionalLayout
- rxswift
- 네트워크 유량
- WWDC17
- observeOn
- mach-o
- WWDC21
- 에드몬드 카프 알고리즘
- test coverage
- 최단경로문제
- HIG
- MeTal
- WWDC19
- 최단경로 문제
- 벨만포드 알고리즘
- IOS
- WWDC16
- Testable
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함