기술 블로그

2589번 보물섬 본문

알고리즘 문제/BOJ

2589번 보물섬

parkit 2020. 3. 3. 13:56
728x90
반응형

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




3가지 시도를 했었다.

1. 모든 'L'의 좌표를 vector에 담아 이중 for문으로 a정점에서 b점으로 가는 거리를 구하기 -> 시간 초과

2. 어떤 한 정점에서 가장 멀리 떨어진 정점으로 이동하고, 그 정점에서 다시 가장 멀리 떨어진 정점과의 거리 구하기 -> 오답

1
2
3
4
5
4 4
LLLL
LWLW
LLLW
LWWW
cs

답 : 6

오답 : 4

3. 한 정점 'L'에서 끝까지 퍼져 나가면서 최댓값 구하기 -> 정답






2번에 대한 코드

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
121
122
123
124
125
#include <bits/stdc++.h>
 
using namespace std;
 
#define Max 55
#define INF 2e9
 
int R, C;
int dy[4= { 010-1 };
int dx[4= { 10-10 };
bool visit[Max][Max], use[Max][Max];
char m[Max][Max];
 
pair<intint> getPosition(int ty, int tx)
{
    int temp = 0, dist = 0;
    pair<intint> ret = { -1-1 };
 
    visit[ty][tx] = true;
    queue<pair<intint> > q;
 
    q.push({ ty, tx });
 
    while (!q.empty())
    {
        int qs = q.size();
        
        while (qs--)
        {
            int r = q.front().first;
            int c = q.front().second;
 
            q.pop();
 
            if (temp < dist) {
                temp = dist;
                ret.first = r;
                ret.second = c;
            }
 
            for (int i = 0; i < 4; i++) {
                int y = r + dy[i];
                int x = c + dx[i];
 
                if (y < 0 || y >= R || x < 0 || x >= C || visit[y][x] || m[y][x] == 'W') {
                    continue;
                }
 
                visit[y][x] = true;
                q.push({ y, x });
            }
        }
 
        ++dist;
    }
 
    return ret;
}
 
int getDistance(int sy, int sx)
{
    int ret = 0, dist = 0;
 
    memset(use, falsesizeof(use));
    use[sy][sx] = true;
 
    queue<pair<intint> > q;
    q.push({ sy, sx });
 
    while (!q.empty())
    {
        int qs = q.size();
 
        while (qs--)
        {
            int r = q.front().first;
            int c = q.front().second;
 
            q.pop();
 
            ret = max(ret, dist);
 
            for (int i = 0; i < 4; i++) {
                int y = r + dy[i];
                int x = c + dx[i];
 
                if (y < 0 || y >= R || x < 0 || x >= C || use[y][x] || m[y][x] == 'W') {
                    continue;
                }
 
                use[y][x] = true;
                q.push({ y, x });
            }
        }
 
        ++dist;
    }
 
    return ret;
}
 
int main()
{
    cin.tie(0);
    cin >> R >> C;
 
    int ans = 0;
 
    for (int i = 0; i < R; i++) {
        scanf("%s"&m[i][0]);
    }
 
    for (int i = 0; i < R; i++) {
        for (int j = 0; j < C; j++) {
            if (!visit[i][j] && m[i][j] == 'L') {
                pair<intint> g = getPosition(i, j);
                ans = max(ans, getDistance(g.first, g.second));
            }
        }
    }
 
    printf("%d\n", ans);
 
    return 0;
}
cs







3번에 대한 정답 코드

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
#include <bits/stdc++.h>
 
using namespace std;
 
#define Max 55
#define INF 2e9
 
int R, C;
int dy[4= { 010-1 };
int dx[4= { 10-10 };
bool visit[Max][Max];
char m[Max][Max];
 
int bfs(int sy, int sx)
{
    int dist = 0;
 
    memset(visit, falsesizeof(visit));
    visit[sy][sx] = true;
 
    queue<pair<intint> > q;
    q.push({ sy, sx });
 
    while (!q.empty())
    {
        int qs = q.size();
 
        while (qs--)
        {
            int r = q.front().first;
            int c = q.front().second;
 
            q.pop();
 
            for (int i = 0; i < 4; i++) {
                int y = r + dy[i];
                int x = c + dx[i];
 
                if (y < 0 || y >= R || x < 0 || x >= C || visit[y][x] || m[y][x] == 'W') {
                    continue;
                }
 
                visit[y][x] = true;
                q.push({ y, x });
            }
        }
 
        ++dist;
    }
 
    return dist - 1;
}
 
int main()
{
    cin.tie(0);
 
    for (int i = 0; i < Max; i++) {
        for (int j = 0; j < Max; j++) {
            visit[i][j] = INF;
        }
    }
 
    cin >> R >> C;
 
    int ans = 0;
 
    for (int i = 0; i < R; i++) {
        scanf("%s"&m[i][0]);
    }
 
    for (int i = 0; i < R; i++) {
        for (int j = 0; j < C; j++) {
            if (m[i][j] == 'L') {
                ans = max(ans, bfs(i, j));
            }
        }
    }
 
    printf("%d\n", ans);
 
    return 0;
}
cs













728x90
반응형

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

10803번 정사각형 만들기  (0) 2020.03.05
10800번 컬러볼  (0) 2020.03.04
18513번 샘터  (0) 2020.03.02
15922번 아우으 우아으이야!!  (0) 2020.03.01
16925번 문자열 추측  (0) 2020.02.29