기술 블로그

18513번 샘터 본문

알고리즘 문제/BOJ

18513번 샘터

parkit 2020. 3. 2. 11:46
728x90
반응형

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


boj 백준 샘터 18513 bfs 복습 실수 필수 long 자료형


그림을 잘 보면, 샘터를 기준으로 양 옆으로 하나 씩 집을 설치하면 되는 것을 알 수 있다.


이를 통해, 샘터를 기준으로 방문 처리를 하면서 1 씩 퍼져나가는 것으로 볼 때


필요한 알고리즘은 bfs임을 알 수 있다.



틀렸습니다를 받았길래 알고보니, 정답 범위가 long long이었다.




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
#include <bits/stdc++.h>
 
using namespace std;
 
int n, k;
int d[2= { 1-1 };
queue<pair<intint> > q;
set<int> s;
 
long long bfs()
{
    long long ret = 0;
 
    while (!q.empty())
    {
        int qs = q.size();
 
        while (qs--)
        {
            int x = q.front().first;
            int p = q.front().second;
 
            q.pop();
 
            for (int i = 0; i < 2; i++) {
                int nx = x + d[i];
 
                if (nx < -100000000 || nx > 100000000 || s.count(nx) >= 1) {
                    continue;
                }
 
                --k;
                ret += abs(nx - p);
 
                if (k == 0) {
                    return ret;
                }
 
                s.insert(nx);
                q.push({ nx, p });
            }
        }
    }
 
    return ret;
}
 
int main()
{
    cin.tie(0);
    scanf("%d %d"&n, &k);
 
    int input;
    for (int i = 0; i < n; i++) {
        scanf("%d"&input);
        q.push({ input, input });
        s.insert(input);
    }
 
    printf("%lld\n", bfs());
 
    return 0;
}
cs

















728x90
반응형

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

10800번 컬러볼  (0) 2020.03.04
2589번 보물섬  (0) 2020.03.03
15922번 아우으 우아으이야!!  (0) 2020.03.01
16925번 문자열 추측  (0) 2020.02.29
3197번 백조의 호수  (0) 2020.02.29