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
- 2294
- 줄 세우기
- C
- RootMotion
- 팰린드롬 만들기
- baekjoon
- UnrealEngine5
- C++
- NRVO
- 백준
- 오블완
- const
- 티스토리챌린지
- Programmers
- RVO
- Unreal Engine5
- Frustum
- 언리얼엔진5
- 1563
- winapi
- GeeksForGeeks
- UE5
- softeer
- UnrealEngine4
- directx
- IFileDialog
- DirectX11
- algorithm
- DeferredRendering
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 4920번 : 테트리스 게임 본문
https://www.acmicpc.net/problem/4920
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
|
int n;
int arr[100][100];
vector<int> answers;
int shapes[13][4][2] =
{
{ {0,0}, {0,1}, {0,2}, {0,3}}, // 작대기
{ {0,0},{1,0},{2,0},{3,0}},
{ {0,0},{0,1}, {1,1},{1,2}}, // ㄹ자
{ {0,0},{1,0}, {1,-1},{2,-1}},
{{0,0},{0,1},{0,2},{1,2}}, // ㄱ자
{{0,0},{0,-1},{1,-1},{2,-1}},
{{0,0},{1,0},{2,0},{2,-1}},
{{0,0},{1,0},{1,1},{1,2}},
{{0,0},{0,1},{0,2},{1,1}}, // ㅗ 자
{{0,0},{1,0},{1,-1},{2,0}},
{{0,0},{1,0},{1,-1},{1,1}},
{{0,0},{1,0}, {1,1}, {2,0}},
{{0,0},{0,1}, {1,0},{1,1}} // 사각형
};
bool isInRange(int y, int x)
{
if (y < 0 || y >= n || x < 0 || x >= n) return false;
return true;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
while (1)
{
cin >> n;
if (n == 0) break;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
cin >> arr[i][j];
}
}
int answer = -4000001;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
for (int k = 0; k < 13; ++k)
{
int maxNum = 0;
for (int m = 0; m < 4; ++m)
{
int curY = i + shapes[k][m][0];
int curX = j + shapes[k][m][1];
if (!isInRange(curY, curX)) break;
maxNum += arr[curY][curX];
if (m == 3)
{
answer = max(answer, maxNum);
}
}
}
}
}
answers.push_back(answer);
}
for (int i = 0; i < answers.size(); ++i)
{
cout << i + 1 << '.' << " " << answers[i] << endl;
}
}
|
cs |
블럭모양을 배열로 전부 잡아준다음, 각 좌표마다 범위체크하면서 검사해주면 된다.
다만, 음수값이 있을 수 있으니 최대값 체크할때 초기변수값을 -4000000이하로 잡아줘야한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2109번 : 순회강연 (1) | 2023.11.20 |
---|---|
[Algorithm]Baekjoon 1202번 : 보석 도둑 (1) | 2023.11.20 |
[Algorithm]Baekjoon 17090번 : 미로 탈출하기 (0) | 2023.11.17 |
[Algorithm]Baekjoon 2186번 : 문자판 (0) | 2023.11.17 |
[Algorithm]Baekjoon 14267번 : 회사 문화 1 (0) | 2023.11.17 |