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
- 1563
- C
- const
- UE5
- directx
- 티스토리챌린지
- Unreal Engine5
- C++
- 백준
- 2294
- 언리얼엔진5
- RVO
- NRVO
- UnrealEngine5
- 팰린드롬 만들기
- IFileDialog
- GeeksForGeeks
- baekjoon
- RootMotion
- algorithm
- 프로그래머스
- Programmers
- DeferredRendering
- 줄 세우기
- winapi
- DirectX11
- softeer
- 오블완
- UnrealEngine4
- Frustum
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 삼각 달팽이 본문
https://school.programmers.co.kr/learn/courses/30/lessons/68645?language=cpp
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
|
vector<int> solution(int n) {
vector<int> answer;
vector<vector<int>> gameMap(1000, vector<int>(1000));
vector<pair<int, int>> dir = { {-1,-1} , {1,0}, {0,1} };
if (n == 1)
{
answer.push_back(1);
return answer;
}
for (int i = 0; i < n; i++)
{
gameMap[i][0] = i + 1;
}
for (int i = 0; i < n; i++)
{
gameMap[n - 1][i] = i + n;
}
int curNum = gameMap[n - 1][n - 1];
int moveCount = n - 2;
int curX = n - 1;
int curY = n - 1;
int dirCount = 0;
while (moveCount != 0)
{
if (dirCount == 3) dirCount = 0;
int curDirY = dir[dirCount].first;
int curDirX = dir[dirCount].second;
for (int i = 0; i < moveCount; i++)
{
curY = curY + curDirY;
curX = curX + curDirX;
gameMap[curY][curX] = curNum + 1;
curNum = curNum + 1;
}
moveCount--;
dirCount++;
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < i + 1; j++)
{
answer.push_back(gameMap[i][j]);
}
}
return answer;
}
|
cs |
2차원배열에 달팽이모양으로 숫자찍어주는 문제이다.
예재의 그림을 왼쪽정렬을 시키면 배열로 표현하기 좋게 그림이 나온다.
처음 n-1번만큼 수직,수평 이동시킨 후, moveCount가 0이 될때까지 방향을 바꿔가면서 moveCount만큼 찍어주면된다.
방향이 바뀔때마다 moveCount는 1씩 빠진다.
이런건 직접 노트에 그려보면 바로 감이 잡힌다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 다음 큰 숫자 (0) | 2022.08.29 |
---|---|
[Algorithm] Programmers :: 전력망을 둘로 나누기 (0) | 2022.08.29 |
[Algorithm] Programmers :: 방금그곡 (0) | 2022.08.27 |
[Algorithm] Programmers :: 튜플 (0) | 2022.08.26 |
[Algorithm] Programmers :: 아이템 줍기 (0) | 2022.08.26 |