본문 바로가기

BOJ/C++

로봇청소기 + 테스트케이스

2019/09/10 - [BOJ/C++] - [BOJ] 아맞다우산

 

[BOJ] 아맞다우산

5 5 ##### #S..E #...# #..X# ##### 7 *물건을 찾으러 가는 순서에 따라서 최단 거리가 결정이 된다. *물건에 번호를 매겨서 비트마스킹으로 하려고 했으나, 매번 값이 달라짐 *시작점, 물건, 도착점을 모두 하나..

jayrightthere.tistory.com

 

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
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <cstring>
 
#define INF 987654321
using namespace std;
 
int w, h;
char map[22][22];
typedef pair<intint> pp;
bool visited[21][21];
int dx[4= {-1,1,0,0}, dy[4= {0,0,-1,1};
 
int bfs(pp p1, pp p2) {
    queue<pp> q;
    q.push(p1);
 
    memset(visited, 0sizeof(visited));
    visited[p1.first][p1.second] = true;
 
    int res = INF, tmp = 0;
    while(!q.empty()) {
        int size = q.size();
        while(size--) {
            int x = q.front().first;
            int y = q.front().second;
            q.pop();
 
            if (x == p2.first && y == p2.second) {
                res = min(res, tmp);
                continue;
            }
 
            for (int i = 0; i < 4; i++) {
                int nx = x + dx[i];
                int ny = y + dy[i];
 
                if (nx < 0 || nx >= h || ny < 0 || ny >= w || visited[nx][ny] || map[nx][ny] == 'x'continue;
 
                visited[nx][ny] = true;
                q.push(pp(nx, ny));
            }
        }
        ++tmp;
    }
    return res;
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    while (1)
    {
        cin >> w >> h;
        if (w == 0 && h == 0break;
 
        memset(map, 0sizeof(map));
        vector<pp> pos;
        for (int i = 0; i < h; i++)
        {
            for (int j = 0; j < w; j++)
            {
                cin >> map[i][j];
                if (map[i][j] == 'o'pos.insert(pos.begin(), pp(i, j));
                else if (map[i][j] == '*') pos.push_back(pp(i, j));
            }
        }
 
        int dp[22][22= {{0}};
 
        for (int i = 0; i < pos.size(); i++) {
            for (int j = i; j < pos.size(); j++) {
                if (i == j) continue;
                dp[i][j] = dp[j][i] = bfs(pos[i], pos[j]);
            }
        }
        
        vector<int> seq;
        for (int i = 1; i < pos.size(); i++) {
            seq.push_back(i);
        }
 
        int ans = INF, sum, start;
        do {
            sum = 0; start = 0;
            bool flag =false;
            for (auto i : seq) {
                if (dp[start][i] == INF) {
                    flag = true;
                    break;
                }
                sum += dp[start][i];
                start = i;
            }
            if (flag) continue;
            ans = min(ans, sum);
 
        } while(next_permutation(seq.begin(), seq.end()));
 
        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.txt
0.02MB

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

역사  (0) 2020.03.02
통나무 옮기기  (0) 2020.02.29
공주님을 구해라!  (0) 2020.02.28
알고스팟  (0) 2020.02.28
달이 차오른다, 가자  (0) 2020.02.28