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
- 그래프
- 유니티
- 시뮬레이션
- 누적 합
- 다이나믹 프로그래밍
- 유니온 파인드
- ue5
- 알고리즘
- 다익스트라
- 자료구조
- 트리
- 투 포인터
- 수학
- 재귀
- 정렬
- Team Fortress 2
- 백트래킹
- Unreal Engine 5
- DFS
- 브루트포스
- BFS
- 스택
- 우선순위 큐
- 구현
- 백준
- VR
- c++
- XR Interaction Toolkit
- 그리디 알고리즘
- 문자열
Archives
- Today
- Total
1일1알
백준 12886번 돌 그룹 C++ 본문
a에서 b로 옮기는 경우와 b에서 a로 옮기는 경우가 배치되는 순서만 다를 뿐, 결과는 같기 때문에 순서를 신경쓰지 않고 방문 표시를 하며 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;
struct Stones {
int a;
int b;
int c;
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int a, b, c;
cin >> a >> b >> c;
vector<vector<bool>> found(1503, vector<bool>(1503, false));
queue<Stones> q;
q.push({ a,b,c });
int ans = 0;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.a == curr.b && curr.b == curr.c) {
ans = 1;
break;
}
int small, big, nextA, nextB, nextC;
// a,b
small = min(curr.a, curr.b);
big = max(curr.a, curr.b);
nextA = small * 2;
nextB = big - small;
if (!found[nextA][nextB]) {
found[nextA][nextB] = true;
found[nextB][nextA] = true;
q.push({ nextA,nextB,curr.c });
}
// a,c
small = min(curr.a, curr.c);
big = max(curr.a, curr.c);
nextA = small * 2;
nextC = big - small;
if (!found[nextA][nextC]) {
found[nextA][nextC] = true;
found[nextC][nextA] = true;
q.push({ nextA,curr.b,nextC });
}
// b,c
small = min(curr.b, curr.c);
big = max(curr.b, curr.c);
nextB = small * 2;
nextC = big - small;
if (!found[nextB][nextC]) {
found[nextB][nextC] = true;
found[nextC][nextB] = true;
q.push({ curr.a,nextB,nextC });
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 21736번 헌내기는 친구가 필요해 C++ (0) | 2022.03.04 |
---|---|
백준 2479번 경로 찾기 C++ (0) | 2022.03.03 |
백준 2617번 구슬 찾기 C++ (0) | 2022.03.01 |
백준 2206번 벽 부수고 이동하기 C++ (0) | 2022.02.28 |
백준 1987번 알파벳 C++ (0) | 2022.02.27 |