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
- 스택
- 브루트포스
- XR Interaction Toolkit
- Unreal Engine 5
- 알고리즘
- 자료구조
- 백트래킹
- 정렬
- 유니티
- 재귀
- 누적 합
- 구현
- 문자열
- 시뮬레이션
- 다익스트라
- 그리디 알고리즘
- 다이나믹 프로그래밍
- VR
- 우선순위 큐
- c++
- Team Fortress 2
- 백준
- 트리
- 수학
- 그래프
- DFS
- BFS
- 유니온 파인드
- 투 포인터
Archives
- Today
- Total
1일1알
백준 2784번 가로 세로 퍼즐 C++ 본문
https://www.acmicpc.net/problem/2784
백트래킹
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
vector<string> v(6);
vector<int> idxs;
vector<bool> visited(6, false);
vector<bool> found;
bool S_ans = false;
void BT(int idx, int cnt) {
if (cnt >= 3) {
if (S_ans) return;
found = vector<bool>(6, false);
for (auto a : idxs) {
found[a] = true;
}
for (int i = 0; i < 3; i++) {
string str = "";
for (auto a : idxs) {
str += v[a][i];
}
for (int i = 0; i < 6; i++) {
if (found[i]) continue;
if (str != v[i]) continue;
found[i] = true;
break;
}
}
bool ans = true;
for (auto a : found) {
if (a) continue;
ans = false;
}
if (ans == true) {
S_ans = true;
for (auto a : idxs) {
cout << v[a] << "\n";
}
}
return;
}
for (int i = 0; i < 6; i++) {
if (visited[i]) continue;
visited[i] = true;
idxs.push_back(i);
BT(i + 1, cnt + 1);
visited[i] = false;
idxs.pop_back();
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
for (int i = 0; i < 6; i++) cin >> v[i];
BT(0, 0);
if (S_ans == false) cout << 0;
}
'알고리즘' 카테고리의 다른 글
백준 6068번 시간 관리하기 C++ (1) | 2023.01.26 |
---|---|
백준 13565번 침투 C++ (0) | 2023.01.25 |
백준 2866번 문자열 잘라내기 C++ (0) | 2023.01.20 |
백준 1138번 한 줄로 서기 C++ (0) | 2023.01.19 |
백준 26215번 눈 치우기 C++ (0) | 2023.01.18 |