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
- Team Fortress 2
- 백준
- 수학
- 재귀
- Unreal Engine 5
- 구현
- 브루트포스
- 트리
- DFS
- 문자열
- 그리디 알고리즘
- 누적 합
- 자료구조
- ue5
- 그래프
- c++
- 유니티
- VR
- 스택
- 다익스트라
- 투 포인터
- 유니온 파인드
- XR Interaction Toolkit
- BFS
- 우선순위 큐
- 다이나믹 프로그래밍
- 정렬
- 알고리즘
- 시뮬레이션
- 백트래킹
Archives
- Today
- Total
1일1알
백준 1405번 미친 로봇 C++ 본문
백트래킹을 이용해서 마지막 이동까지 마쳤을 때 이동 경로가 단순한 로봇들이 지나온 길의 확률들만 모두 더하는 방식으로 문제를 해결하였다.
중간에 이미 방문한 곳을 가려고 하면 그곳은 탐색을 하지 않았다.
#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[4] = { 0,0,1,-1 };
int dCol[4] = { 1,-1,0,0 };
vector<vector<bool>> visited(30, vector<bool>(30, false));
vector<double> proV(4);
int n;
double ans = 0;
void BT(int cnt, int row, int col, double pro) {
if (cnt >= n) {
ans += pro;
return;
}
for (int i = 0; i < 4; i++) {
int nextRow = row + dRow[i];
int nextCol = col + dCol[i];
if (visited[nextRow][nextCol]) continue;
visited[nextRow][nextCol] = true;
BT(cnt + 1, nextRow, nextCol, pro * proV[i]);
visited[nextRow][nextCol] = false;
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
visited[15][15] = true;
cin >> n;
for (int i = 0; i < 4; i++) {
cin >> proV[i];
proV[i] /= 100;
}
BT(0, 15, 15, 1);
cout.precision(20);
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2688번 줄어들지 않아 C++ (0) | 2022.03.19 |
---|---|
백준 12904번 A와 B C++ (0) | 2022.03.18 |
백준 6593번 상범 빌딩 C++ (0) | 2022.03.16 |
백준 9084번 동전 C++ (0) | 2022.03.15 |
백준 13023번 ABCDE C++ (0) | 2022.03.14 |