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
- 브루트포스
- 백트래킹
- 그래프
- 우선순위 큐
- XR Interaction Toolkit
- 백준
- 다익스트라
- VR
- Team Fortress 2
- 재귀
- 유니티
- 트리
- 투 포인터
- 수학
- DFS
- ue5
- 문자열
- 다이나믹 프로그래밍
- c++
- 정렬
- 구현
- 자료구조
- 유니온 파인드
- Unreal Engine 5
- BFS
- 그리디 알고리즘
- 누적 합
- 스택
- 알고리즘
- 시뮬레이션
Archives
- Today
- Total
1일1알
백준 10472번 십자뒤집기 C++ 본문
비트마스킹을 활용해서 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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int dRow[5] = { 0,-1,0,1,0 };
int dCol[5] = { 0,0,1,0,-1 };
int visited[600] = { false };
int arr[3][3] = { {0,1,2},{3,4,5},{6,7,8} };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int p;
cin >> p;
while (p--) {
int target = 0;
int cnt = 0;
string str;
queue<pair<int ,int>> q;
for (int i = 0; i < 3; i++) {
cin >> str;
for (int j = 0; j < 3; j++) {
if (str[j] == '*') target += 1 << cnt;
cnt++;
}
}
q.push({ 0,0 });
visited[0] = true;
int ans = -1;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.first == target) {
ans = curr.second;
break;
}
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
int row = i;
int col = j;
int nextVal = curr.first;
for (int k = 0; k < 5; k++) {
int nextRow = row + dRow[k];
int nextCol = col + dCol[k];
if (nextRow < 0 || nextRow >= 3) continue;
if (nextCol < 0 || nextCol >= 3) continue;
int nextBlock = 1 << arr[nextRow][nextCol];
if (curr.first & nextBlock) {
nextVal = nextVal ^ nextBlock;
}
else {
nextVal = nextVal | nextBlock;
}
}
if (visited[nextVal]) continue;
visited[nextVal] = true;
q.push({ nextVal,curr.second + 1 });
}
}
}
cout << ans << "\n";
for (int i = 0; i < 600; i++) {
visited[i] = false;
}
}
};
'알고리즘' 카테고리의 다른 글
백준 22945번 팀 빌딩 C++ (0) | 2022.03.07 |
---|---|
백준 12892번 생일 선물 C++ (0) | 2022.03.06 |
백준 21736번 헌내기는 친구가 필요해 C++ (0) | 2022.03.04 |
백준 2479번 경로 찾기 C++ (0) | 2022.03.03 |
백준 12886번 돌 그룹 C++ (0) | 2022.03.02 |