Game Develop

[Algorithm] Programmers :: 삼각 달팽이 본문

Algorithm/Programmers

[Algorithm] Programmers :: 삼각 달팽이

MaxLevel 2022. 8. 29. 02:12

https://school.programmers.co.kr/learn/courses/30/lessons/68645?language=cpp 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

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(1000vector<int>(1000));
    vector<pair<intint>> 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씩 빠진다.

 

이런건 직접 노트에 그려보면 바로 감이 잡힌다.