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
- UnrealEngine5
- C++
- RVO
- C
- GeeksForGeeks
- 2294
- DirectX11
- DeferredRendering
- NRVO
- 오블완
- directx
- Unreal Engine5
- winapi
- const
- baekjoon
- UnrealEngine4
- 티스토리챌린지
- IFileDialog
- 1563
- 백준
- RootMotion
- 줄 세우기
- 언리얼엔진5
- softeer
- 프로그래머스
- Frustum
- UE5
- Programmers
- algorithm
- 팰린드롬 만들기
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 프렌즈4블록 본문
https://school.programmers.co.kr/learn/courses/30/lessons/17679
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
|
bool destroyCheck[31][31] = { false };
vector<string> board;
int Destroy()
{
int count = 0;
memset(destroyCheck, false, sizeof(destroyCheck));
for (int i = 0; i < board.size() - 1; ++i)
{
for (int j = 0; j < board[0].size() - 1; ++j)
{
char standard = board[i][j];
if (standard == '?') continue;
if (board[i + 1][j] == standard && board[i][j + 1] == standard && board[i + 1][j + 1] == standard)
{
destroyCheck[i][j] = true;
destroyCheck[i + 1][j] = true;
destroyCheck[i][j + 1] = true;
destroyCheck[i + 1][j + 1] = true;
}
}
}
for (int i = 0; i < board.size(); ++i)
{
for (int j = 0; j < board[0].size(); ++j)
{
if (destroyCheck[i][j])
{
++count;
board[i][j] = '?';
}
}
}
return count;
}
void Down()
{
for (int i = 0; i < board[0].size(); ++i)
{
int count = 0;
bool isChecking = false;
for (int j = board.size() - 1; j >= 0; --j) // 아래에서 위로
{
if (board[j][i] == '?')
{
isChecking = true;
++count;
}
else
{
if (isChecking)
{
board[j + count][i] = board[j][i];
board[j][i] = '?';
}
}
}
}
}
int solution(int m, int n, vector<string> _board)
{
int answer = 0;
board = _board;
while (1)
{
int destroyedNodes = Destroy();
if (destroyedNodes == 0) break;
answer += destroyedNodes;
Down();
}
return answer;
}
|
cs |
크게 어렵지 않은 구현문제인데, 한번 풀어보는걸 추천한다.
백준에서 추천문제집에 있는 문제들 풀다보면 비슷한 유형의 문제들이 더러 있었다.
블록 삭제 후, 밑으로 떨어뜨리는부분을 연습해보면 좋을 듯 하다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: n진수 게임 (0) | 2023.06.02 |
---|---|
[Algorithm] Programmers :: 파일명 정렬 (0) | 2023.06.02 |
[Algorithm] Programmers :: 예상 대진표 (0) | 2023.06.02 |
[Algorithm] Programmers :: 영어 끝말잇기 (0) | 2023.06.02 |
[Algorithm] Programmers :: 행렬의 곱셈 (0) | 2023.06.02 |