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
- BFS
- 우선순위 큐
- 백준
- c++
- 구현
- Unreal Engine 5
- 알고리즘
- DFS
- 시뮬레이션
- 수학
- ue5
- 자료구조
- 그래프
- 문자열
- 유니티
- XR Interaction Toolkit
- 누적 합
- 유니온 파인드
- VR
- 정렬
- 그리디 알고리즘
- 트리
- 투 포인터
- 스택
- 재귀
- Team Fortress 2
- 다익스트라
- 다이나믹 프로그래밍
- 브루트포스
- 백트래킹
Archives
- Today
- Total
1일1알
백준 2251번 물통 C++ 본문
dfs방식을 이용해서 탐색하면서 A에 있는 물의 양이 0일 때 C에있는 물의 양을 저장해가면서 문제를 해결하였다.
탐색을 이미 했는지 확인하는 visited 은 A, B, C 중 2개만 검사하면 나머지는 값이 고정되기 때문에 visited 배열을 2차원 배열로 사용하였다.
#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>
using namespace std;
typedef long long ll;
int visited[201][201] = { false };
int A, B, C;
set<int> ans;
void solve(int a, int b, int c) {
visited[a][b] = true;
if (a == 0) {
ans.insert(c);
}
int spaceA = A - a;
int spaceB = B - b;
int spaceC = C - c;
int nextA, nextB, nextC;
if (a != 0) {
//A->B
if (spaceB >= a) {
nextA = 0;
nextB = b + a;
nextC = c;
}
else {
nextA = a - spaceB;
nextB = B;
nextC = c;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
//A->C
if (spaceC >= a) {
nextA = 0;
nextB = b;
nextC = c + a;
}
else {
nextA = a - spaceC;
nextB = b;
nextC = C;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
}
if (b != 0) {
//B->A
if (spaceA >= b) {
nextA = a + b;
nextB = 0;
nextC = c;
}
else {
nextA = A;
nextB = b - spaceA;
nextC = c;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
//B->C
if (spaceC >= b) {
nextA = a;
nextB = 0;
nextC = b + c;
}
else {
nextA = a;
nextB = b - spaceC;
nextC = C;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
}
if (c != 0) {
//C->A
if (spaceA >= c) {
nextA = a + c;
nextB = b;
nextC = 0;
}
else {
nextA = A;
nextB = b;
nextC = c - spaceA;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
//C->B
if (spaceB >= c) {
nextA = a;
nextB = b + c;
nextC = 0;
}
else {
nextA = a;
nextB = B;
nextC = c - spaceB;
}
if (!visited[nextA][nextB]) solve(nextA, nextB, nextC);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> A >> B >> C;
solve(0, 0, C);
for (auto a : ans) {
cout << a << " ";
}
};
'알고리즘' 카테고리의 다른 글
백준 1743번 음식물 피하기 C++ (0) | 2021.12.11 |
---|---|
백준 2302 극장 좌석 C++ (0) | 2021.12.10 |
백준 1446번 지름길 C++ (0) | 2021.12.08 |
백준 5904번 Moo 게임 C++ (0) | 2021.12.07 |
백준 15662번 톱니바퀴 (2) C++ (0) | 2021.12.06 |