본문 바로가기

BOJ

백준 15558 / 점프 게임



최단거리가 있으면 갈 수 있다라는 뜻이기 떄문에


BFS로 풀 수 있다.


n보다 큰 모든 칸을 갈 수 있는 칸으로 설정했고,


k의 최대치가 100000으로 맵의 크기를 200000으로 설정했다.


tuple을 사용하여 시간초를 추가해주었다.


시간초는 뒤로 이동하는 경우에만 영향을 준다.





코드


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
#include<stdio.h>
#include<iostream>
#include<vector>
#include<queue>
#include<tuple>
#include<memory.h>
 
using namespace std;
 
int map[2][200000];
bool check[2][200000];
 
int main() {
    
    //freopen("Text.txt", "r", stdin);
 
    memset(map, 1sizeof(map));
 
    int n, k;
    cin >> n >> k;
 
    for (int i = 0; i < 2; i++) {
        for (int j = 0; j < n; j++) {
            scanf("%1d"&map[i][j]);
        }
    }
 
    queue < tuple<intintint>>q;
 
    q.push({ 0,0,0 });
    check[0][0= true;
 
    while (!q.empty()) {
        int line, x, sec;
        tie(line, x, sec) = q.front();
        q.pop();
    
 
        //나갔나 안나갔나 체크
        if (x >= n) {
            cout << 1 << endl;
            return 0;
        }
 
        //case 1
        if (map[line][x + 1!= 0 && check[line][x + 1== false) {
            check[line][x + 1= true;
            q.push({ line,x + 1,sec + 1 });
        }
        //case 2
        if (x-1>sec && map[line][x - 1!= 0 && check[line][x - 1== false) {
            check[line][x - 1= true;
            q.push({ line,x - 1,sec + 1 });
        }
        //case3
        if (line == 0) {
            if (map[1][x + k] != 0 && check[1][x + k] == false) {
                check[1][x + k] = true;
                q.push({ 1,x + k,sec + 1 });
            }
        }
        if (line == 1) {
            if (map[0][x + k] != 0 && check[0][x + k] == false) {
                check[0][x + k] = true;
                q.push({ 0,x + k,sec + 1 });
            }
        }
    }
 
 
    cout << 0 << endl;
}
cs





'BOJ' 카테고리의 다른 글

백준 1890 / 점프  (0) 2019.02.08
백준 11048 / 이동하기  (0) 2019.02.08
백준 6087 / 레이저 통신  (0) 2019.02.07
백준 4991 / 로봇 청소기  (0) 2019.02.06
백준 9328 / 열쇠  (0) 2019.02.06