기술 블로그

16932번 모양 만들기 본문

알고리즘 문제/BOJ

16932번 모양 만들기

parkit 2019. 4. 6. 09:46
728x90
반응형

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


저번에 푼 코드 : https://hsdevelopment.tistory.com/254



공부하기 좋고, 복습하기 좋은 DFS 문제여서 다시 풀어봤다.

다시 또 풀어볼 생각이다.


저번에 푼 코드에서는 필요 없는 함수, 변수들이 있었다.


또한, 다시 풀었음에도 불구하고,


group 배열 크기를 1010으로 했었다.


연결 요소의 개수는 1010 * 1010 크기의 배열에서 1010 이상일 수 있기 때문이다.





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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
#include <set>
#include <sstream>
#include <tuple>
 
#pragma warning(disable:4996)  
#pragma comment(linker, "/STACK:336777216")
 
using namespace std;
 
typedef struct info
{
    int value;
    int group;
}info;
 
int N = 0, M = 0, g[1010 * 1010= { 0, }; // 그룹 배열 크기를 1010으로 했었다.
int dy[4= { 010-1 };
int dx[4= { 10-10 };
 
info Map[1010][1010], temp;
 
bool visit[1010][1010= { false, };
 
int DFS(int r, int c, int group)
{
    int ret = 1;
 
    visit[r][c] = true;
    Map[r][c].group = group;
 
    for (int i = 0; i < 4; i++)
    {
        int y = r + dy[i];
        int x = c + dx[i];
 
        if (y < 0 || y >= N || x < 0 || x >= M || visit[y][x] || Map[y][x].value == 0continue;
 
        ret += DFS(y, x, group);
    }
 
    return ret;
}
 
int main(void)
{
    int n = 0, group = 1, ans = 0;
 
    scanf("%d %d"&N, &M);
 
    for (int i = 0; i < N; i++)
        for (int j = 0; j < M; j++)
        {
            scanf("%d"&n);
 
            temp.value = n;
            temp.group = 0;
 
            Map[i][j] = temp;
        }
 
    for (int i = 0; i < N; i++)
        for (int j = 0; j < M; j++)
        {
            if (!visit[i][j] && Map[i][j].value == 1)
            {
                g[group++= DFS(i, j, group); 
                /*DFS(i, j, group++); 쓰면 안 된다. 
                DFS 함수가 먼저 실행되기 때문에 g 배열에 저장할 때 이미 group 변수는 1 증가.*/
            }
        }
    
    for (int i = 0; i < N; i++)
        for (int j = 0; j < M; j++)
        {
            if (Map[i][j].value == 1continue;
 
            int sum = 0;
 
            vector<int> v;
 
            for (int k = 0; k < 4; k++)
            {
                int y = i + dy[k];
                int x = j + dx[k];
 
                bool stop = false;
 
                if (y < 0 || y >= N || x < 0 || x >= M || Map[y][x].value == 0continue;
 
                for (auto a : v)
                    if (a == Map[y][x].group)
                    {
                        stop = true;
                        break;
                    }            
 
                if (stop) continue;
 
                v.push_back(Map[y][x].group);
            }
 
            for (auto a : v) sum += g[a];
 
            ans = max(ans, sum + 1);
        }
    
    printf("%d\n", ans);    
 
    return 0;
}
cs
























728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

17128번 소가 정보섬에 올라온 이유  (0) 2019.04.07
17127번 벚꽃이 정보섬에 피어난 이유  (0) 2019.04.06
2920번 음계  (0) 2019.04.05
1978번 소수 찾기  (0) 2019.04.05
14501번 퇴사, 15486번 퇴사 2  (0) 2019.04.05