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 | 31 |
Tags
- NRVO
- Frustum
- 프로그래머스
- algorithm
- 팰린드롬 만들기
- C++
- DirectX11
- 2294
- 1563
- 언리얼엔진5
- GeeksForGeeks
- Unreal Engine5
- UnrealEngine5
- DeferredRendering
- softeer
- 티스토리챌린지
- RVO
- RootMotion
- winapi
- 줄 세우기
- directx
- IFileDialog
- UE5
- 백준
- UnrealEngine4
- Programmers
- 오블완
- const
- baekjoon
- C
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 12100번 : 2048(Easy) 본문
https://www.acmicpc.net/problem/12100
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
int n;
int arr[22][22] = { 0 };
int tempArr[22][22] = { 0 };
bool visited[22][22] = { false };
int dirs[4][2] = { {-1,0}, {1,0}, {0,-1}, {0,1} };
vector<int> curDirs;
int answer = 0;
void move(int y, int x, int dir)
{
int num = tempArr[y][x];
tempArr[y][x] = 0;
int nextY = y + dirs[dir][0];
int nextX = x + dirs[dir][1];
while (tempArr[nextY][nextX] != -1 && tempArr[nextY][nextX] == 0) // 이동가능하면
{
y = nextY;
x = nextX;
nextY += dirs[dir][0];
nextX += dirs[dir][1];
}
if (tempArr[nextY][nextX] == num && !visited[nextY][nextX])
{
tempArr[nextY][nextX] *= 2;
visited[nextY][nextX] = true;
answer = max(answer, tempArr[nextY][nextX]);
}
else
{
tempArr[y][x] = num;
}
}
void traversalLoop(int dir)
{
switch (dir)
{
case 0:
for (int i = 1; i <= n; ++i)
{
for (int j = 1; j <= n; ++j)
{
if (tempArr[i][j] != 0) move(i, j, dir);
}
}
break;
case 1:
for (int i = n; i >= 1; --i)
{
for (int j = 1; j <= n; ++j)
{
if (tempArr[i][j] != 0) move(i, j, dir);
}
}
break;
case 2:
for (int i = 1; i <= n; ++i)
{
for (int j = 1; j <= n; ++j)
{
if (tempArr[j][i] != 0) move(j, i, dir);
}
}
break;
case 3:
for (int i = n; i >= 1; --i)
{
for (int j = 1; j <= n; ++j)
{
if (tempArr[j][i] != 0) move(j, i, dir);
}
}
break;
}
}
void DFS()
{
if (curDirs.size() == 5)
{
memcpy(tempArr, arr, sizeof(arr));
for (int i = 0; i < 5; ++i)
{
memset(visited, false, sizeof(visited));
traversalLoop(curDirs[i]);
}
return;
}
for (int i = 0; i < 4; ++i)
{
curDirs.push_back(i);
DFS();
curDirs.pop_back();
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
memset(arr, -1, sizeof(arr));
for (int i = 1; i <= n; ++i)
{
for (int j = 1; j <= n; ++j)
{
cin >> arr[i][j];
answer = max(answer, arr[i][j]);
}
}
DFS();
cout << answer;
}
|
cs |
괜시리 각 방향마다 for문 돌리는것을 뭔가 굉장히 짧고 깔끔하게 짜려다 시간만 진창 날린문제.
항상 후회하는 것 같다. 물론 시도가 나쁜건 아니지만, 일단 통과시킨다음 고치던가 했어야했다.
중복순열로 각 차례마다 어떤방향으로 이동시킬지 방향을 전부 뽑고 이동시키면 된다.
주의할 점은, 이미 합쳐진건 또 합치면 안된다는걸 명심해야 한다. 나같은경우 그냥 visited 따로 선언해서 체크했다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 3055번 : 탈출 (0) | 2023.09.15 |
---|---|
[Algorithm] Baekjoon 1726번 : 로봇 (0) | 2023.09.15 |
[Algorithm] Baekjoon 4256번 : 트리 (0) | 2023.09.13 |
[Algorithm] Baekjoon 1109번 : 섬 (1) | 2023.09.13 |
[Algorithm] Baekjoon 1113번 : 수영장 만들기 (0) | 2023.09.13 |