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
- Unreal Engine 5
- VR
- 문자열
- ue5
- 그리디 알고리즘
- DFS
- XR Interaction Toolkit
- 백트래킹
- 다익스트라
- 정렬
- 스택
- BFS
- 투 포인터
- 유니온 파인드
- 브루트포스
- 다이나믹 프로그래밍
- 구현
- 누적 합
- Team Fortress 2
- 재귀
- 시뮬레이션
- 자료구조
- 알고리즘
- 트리
- 유니티
- 우선순위 큐
- 백준
- c++
- 그래프
- 수학
Archives
- Today
- Total
1일1알
백준 12100번 2048 (Easy) 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 n;
int ans = 0;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<int> dirs;
vector<vector<int>> MakeCopyBoard(const vector<vector<int>>& original) {
vector<vector<int>> copyBoard(n, vector<int>(n));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
copyBoard[i][j] = original[i][j];
}
}
return copyBoard;
}
void MoveSimulation(vector<vector<int>>& copyBoard, vector<vector<bool>> &makedNow, int row, int col, int dir) {
if (copyBoard[row][col] == 0) return;
int currRow = row;
int currCol = col;
while (true) {
int nextRow = currRow + dRow[dir];
int nextCol = currCol + dCol[dir];
if (nextRow < 0 || nextRow >= n) break;
if (nextCol < 0 || nextCol >= n) break;
if (makedNow[nextRow][nextCol]) break;
if (copyBoard[nextRow][nextCol] != 0 && copyBoard[nextRow][nextCol] != copyBoard[currRow][currCol]) break;
if (copyBoard[nextRow][nextCol] == 0) {
copyBoard[nextRow][nextCol] = copyBoard[currRow][currCol];
copyBoard[currRow][currCol] = 0;
}
else {
copyBoard[nextRow][nextCol] *= 2;
copyBoard[currRow][currCol] = 0;
makedNow[nextRow][nextCol] = true;
break;
}
currRow = nextRow;
currCol = nextCol;
}
}
void MoveSimulation(vector<vector<int>>& copyBoard, int dir) {
vector<vector<bool>> makedNow(n, vector<bool>(n, false));
if (dir == 0) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
MoveSimulation(copyBoard, makedNow, i, j, dir);
}
}
}
else if (dir == 1) {
for (int j = n - 1; j >= 0; j--) {
for (int i = 0; i < n; i++) {
MoveSimulation(copyBoard, makedNow, i, j, dir);
}
}
}
else if (dir == 2) {
for (int i = n - 1; i >= 0; i--) {
for (int j = 0; j < n; j++) {
MoveSimulation(copyBoard, makedNow, i, j, dir);
}
}
}
else if (dir == 3) {
for (int j = 0; j < n; j++) {
for (int i = 0; i < n; i++) {
MoveSimulation(copyBoard, makedNow, i, j, dir);
}
}
}
}
void BT(const vector<vector<int>> &board) {
if (dirs.size() >= 5) {
vector<vector<int>> copyBoard = MakeCopyBoard(board);
for (auto a : dirs) {
MoveSimulation(copyBoard, a);
}
int maxBlock = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
maxBlock = max(maxBlock, copyBoard[i][j]);
}
}
ans = max(ans, maxBlock);
return;
}
for (int i = 0; i < 4; i++) {
dirs.push_back(i);
BT(board);
dirs.pop_back();
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
vector<vector<int>> board(n, vector<int>(n));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> board[i][j];
}
}
BT(board);
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 1655번 가운데를 말해요 C++ (0) | 2022.05.24 |
---|---|
백준 16235번 나무 재테크 C++ (0) | 2022.05.23 |
백준 1600번 말이 되고픈 원숭이 C++ (0) | 2022.05.20 |
백준 11559번 Puyo Puyo C++ (0) | 2022.05.19 |
백준 15918번 랭퍼든 수열쟁이야!! C++ (0) | 2022.05.18 |