본문 바로가기

BOJ/C++

벽 부수고 이동하기2

*dfs는 시간초과 (전수조사를 하면 안됨)

*벽을 부순 횟수를 visited에 기록해서 한 번 갔던 곳도 최단경로가 된다면 다시 갈 수 있도록 해야한다. 

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 <vector>
#include <queue>
#include <functional>
 
#define INF 987654321
using namespace std;
int n, m, k, ans = INF;
int map[1001][1001];
int dx[4= {-1100}, dy[4= {00-11};
bool visited[1001][1001][11];
typedef pair<intint> pp;
typedef pair<pp, pp> pppp;
// void dfs(int x, int y, int door, int cnt) {
 
//     if (x == n && y == m) {
//         ans = min(ans, cnt);
//         return;
//     }
//     if (cnt > ans) return;
 
//     for (int i = 0; i < 4; i++) {
//         int nx = x + dx[i];
//         int ny = y + dy[i];
 
//         if (nx < 1 || nx > n || ny < 1 || ny > m || visited[nx][ny][0]) continue;
 
//         if (map[nx][ny] == 1) {
//             //벽일 때 벽부술 기회가 남아있으면
//             if (!visited[nx][ny][1] && door < k) {
//                 visited[nx][ny][1] = true;
//                 visited[nx][ny][0] = true;
//                 map[nx][ny] = 0;
//                 dfs(nx, ny, door+1, cnt+1);
//                 map[nx][ny] = 1;
//                 visited[nx][ny][0] = false;
//                 visited[nx][ny][1] = false;
//             }
//         }
//         else {
//             visited[nx][ny][0] = true;
//             dfs(nx, ny, door, cnt+1);
//             visited[nx][ny][0] = false;
//         }
//     }
// }
void bfs(int x, int y)
{
    priority_queue<pppp, vector<pppp>, greater<pppp> > q;
    q.push(pppp(pp(10), pp(x, y)));
 
    visited[x][y][0= visited[x][y][1= true;
 
    while (!q.empty())
    {
 
        int cx = q.top().second.first;
        int cy = q.top().second.second;
        int cnt = q.top().first.first;
        int cntK = q.top().first.second;
        q.pop();
 
        if (cx == n && cy == m)
        {
            ans = min(ans, cnt);
            break;
        }
 
        for (int i = 0; i < 4; i++)
        {
            int nx = cx + dx[i];
            int ny = cy + dy[i];
 
            if (nx < 1 || nx > n || ny < 1 || ny > m || visited[nx][ny][cntK])
                continue;
 
            if (map[nx][ny] == 1)
            {
                if (!visited[nx][ny][cntK+1&& cntK < k)
                {
 
                    visited[nx][ny][cntK+1= true;
                    q.push(pppp(pp(cnt + 1, cntK + 1), pp(nx, ny)));
                }
            }
            else
            {
                visited[nx][ny][cntK] = true;
                q.push(pppp(pp(cnt + 1, cntK), pp(nx, ny)));
            }
        }
    }
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    cin >> n >> m >> k;
 
    for (int i = 1; i <= n; i++)
    {
        string s;
        cin >> s;
 
        for (int j = 0; j < m; j++)
        {
            map[i][j + 1= s[j] - '0';
        }
    }
 
    bfs(11);
    if (ans == INF)
        cout << -1 << '\n';
    else
        cout << ans << '\n';
 
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

 

도움이 됐던 TC

7 4 2

0101

1100

1110

0000

0111

0111

0100

'BOJ > C++' 카테고리의 다른 글

터보소트  (0) 2020.02.20
공장  (0) 2020.02.20
구슬탈출4  (0) 2020.02.18
성곽  (0) 2020.02.18
사탕상자  (0) 2020.02.15