반응형
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
- 처우협의
- 기술면접
- dfs
- 오퍼레터
- Docker
- softeer
- 6987
- 이분탐색
- 백트래킹
- 처우산정
- 경력
- 소프티어
- msSQL
- @P0
- 퇴사통보
- Kafka
- OFFSET
- 매개변수탐색
- upper_bound
- compose
- 연결요소
- 파라메트릭
- incr
- BOJ
- 성적평가
- 백준
- boj #19237 #어른 상어
- BFS
- 13908
- 물채우기
Archives
- Today
- Total
기술 블로그
1525번 퍼즐 본문
728x90
반응형
https://www.acmicpc.net/problem/1525
문자열 처리 + bfs
방문처리는 문자열로 처리해준다. 문자열에 대한 방문처리는 set이 좋다.
#include <bits/stdc++.h>
using namespace std;
string s = "", goal = "123456780";
int dy[4] = { 1, 0, -1, 0 };
int dx[4] = { 0, 1, 0, -1 };
set<string> st;
int bfs()
{
queue<string> q;
q.push(s);
st.insert(s);
int ret = 0;
while (!q.empty())
{
int qs = q.size();
while (qs--)
{
string now = q.front();
q.pop();
if (now == goal) {
return ret;
}
int idx = now.find('0');
int r = idx / 3, c = idx % 3;
for (int i = 0; i < 4; i++) {
int y = r + dy[i];
int x = c + dx[i];
if (y < 0 || y >= 3 || x < 0 || x >= 3) {
continue;
}
int next_idx = 3 * y + x;
string next = now;
swap(next[idx], next[next_idx]);
if (st.count(next) == 0) {
st.insert(next);
q.push(next);
}
}
}
++ret;
}
return -1;
}
int main()
{
//freopen("C:\\Users\\park7\\Desktop\\lazy_bronze\\2.in", "r", stdin);
cin.tie(0);
int n;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
scanf("%d", &n);
s += to_string(n);
}
}
int ans = bfs();
if (ans == -1) printf("-1\n");
else printf("%d\n", ans);
return 0;
}
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2665번 미로만들기 (0) | 2021.09.12 |
---|---|
2810번 컵홀더 (0) | 2021.09.12 |
2571번 색종이 - 3 (0) | 2021.09.04 |
1953번 팀배분 (0) | 2021.08.31 |
17836번 공주님을 구해라! (0) | 2021.08.31 |