Game Develop

[Algorithm]Baekjoon 17070번 :: 파이프 옮기기 1 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 17070번 :: 파이프 옮기기 1

MaxLevel 2022. 12. 10. 01:04

https://www.acmicpc.net/problem/17070

 

17070번: 파이프 옮기기 1

유현이가 새 집으로 이사했다. 새 집의 크기는 N×N의 격자판으로 나타낼 수 있고, 1×1크기의 정사각형 칸으로 나누어져 있다. 각각의 칸은 (r, c)로 나타낼 수 있다. 여기서 r은 행의 번호, c는 열의

www.acmicpc.net

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
struct Node
{
    int y;
    int x;
    int type;
};
 
vector<vector<pair<int,int>>> dir = 
    {{0,1},{-1,-1}, {1,1}},
    {{-1,-1}, {1,0},{1,1}},
    {{0,1},{1,0},{1,1}}
};
 
int n = 0;
int arr[18][18= { 0 };
bool check[18][18][3= { 0 };
int result = 0;
 
void BFS()
{
    queue<Node> q;
    q.push({ 1,2,0 });
                                                                                  
    while (!q.empty())
    {
        Node curNode = q.front();
        q.pop();
 
        int curY = curNode.y;
        int curX = curNode.x;
        int curType = curNode.type;
 
        if (curY == n && curX == n)
        {
            result++;
            continue;
        }
 
        for (int i = 0; i < dir[curType].size(); i++)
        {
            if (dir[curType][i].first == -1continue;
 
            int nextY = curY + dir[curType][i].first;
            int nextX = curX + dir[curType][i].second;
            
            if (arr[nextY][nextX] == 1continue;
            if (i == 2)
            {
                if (arr[nextY - 1][nextX] == 1 || arr[nextY][nextX - 1== 1continue;
            }
 
            q.push({ nextY,nextX,i });
        }
    }
}
 
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
 
    for (int i = 0; i < 18; i++)
    {
        for (int j = 0; j < 18; j++)
        {
            arr[i][j] = 1;
        }
    }
 
    cin >> n;
    
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            cin >> arr[i][j];
        }
    }
 
    BFS();
 
    cout << result;
}
cs

문제 이해하자마자 그냥 BFS코드가 떠올라서 BFS로 짰는데 생각보다 성능이 안좋아서 다른 사람풀이를 봤더니 대체로 백트래킹으로 짰고.. 성능도 좀 더 좋았다.

뭐 위 코드도 통과는 되서 그냥 다른 문제로 넘어가도 되지만, 다른 유형으로도 푸는거에 많이 익숙해져야해서 백트래킹으로도 풀었다.

 

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
vector<vector<pair<intint>>> dir =
{
    {{0,1},{-1,-1}, {1,1}},
    {{-1,-1}, {1,0},{1,1}},
    {{0,1},{1,0},{1,1}}
};
 
int n;
int result;
int arr[18][18];
 
 
void DFS(int sy, int sx, int type)
{
    if (sy == n && sx == n)
    {
        result++;
        return;
    }
 
    for (int i = 0; i < dir[type].size(); i++)
    {
        if (dir[type][i].first == -1continue;
 
        int nextY = sy + dir[type][i].first;
        int nextX = sx + dir[type][i].second;
 
        if (arr[nextY][nextX] == 1continue;
        if (i == 2)
        {
            if (arr[nextY - 1][nextX] == 1 || arr[nextY][nextX - 1== 1continue;
        }
 
        DFS(nextY, nextX, i);
    }
}
 
 
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
 
    for (int i = 0; i < 18; i++)
    {
        for (int j = 0; j < 18; j++)
        {
            arr[i][j] = 1;
        }
    }
 
    cin >> n;
    
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            cin >> arr[i][j];
        }
    }
 
    DFS(120);
 
    cout << result;
}
cs

 

260ms가 BFS로 푼거고 108ms가 백트래킹으로 푼 문제다. 성능차이가 2배넘게 난다.