LeetCode: 865. Shortest Path to Get All Keys

LeetCode: 865. Shortest Path to Get All Keys

题目描述

We are given a 2-dimensional grid. "." is an empty cell, "#" is a wall,"@" is the starting point, ("a","b", …) are keys, and ("A", "B", …) are locks.

We start at the starting point, and one move consists of walking one space in one of the 4 cardinal directions. We cannot walk outside the grid, or walk into a wall. If we walk over a key, we pick it up. We can’t walk over a lock unless we have the corresponding key.

For some 1 <= K <= 6, there is exactly one lowercase and one uppercase letter of the first K letters of the English alphabet in the grid. This means that there is exactly one key for each lock, and one lock for each key; and also that the letters used to represent the keys and locks were chosen in the same order as the English alphabet.

Return the lowest number of moves to acquire all keys. If it’s impossible, return -1.

Example 1:

Input: ["@.a.#","###.#","b.A.B"]
Output: 8

Example 2:

Input: ["@..aA","..B#.","....b"]
Output: 6

Note:

1 <= grid.length <= 30
1 <= grid[0].length <= 30
grid[i][j] contains only '.', '#', '@', 'a'-'f' and 'A'-'F'
The number of keys is in [1, 6].  Each key has a different letter and opens exactly one lock.

解题思路 —— DFS + BFS

DFS 遍历顺序, BFS 遍历最近距离

AC 代码

class Solution {
private:
    // 返回距离 (x, y) 下一个 key 的位置
    pair<int, int> BFS(const vector<string>& grid, int x, int y, 
                       string keysSeached, char curKey, int& len)
    {
        if(x < 0 || y < 0 || x >= grid.size() || y >= grid[x].size())
        {
            return {-1, -1};
        }

        // 标记走过的路径
        vector<string> gridFlag(grid);
        gridFlag[x][y] = '#';

        queue<pair<int, int>> que;
        que.push({x, y});
        que.push({-1, -1});

        static int dirs[][2] = {{0,1}, {1, 0}, {0, -1}, {-1, 0}};
        while(!que.empty())
        {
            int curX = que.front().first;
            int curY = que.front().second;
            que.pop();

            if(curX == -1 && que.empty())
            {
                continue;
            }
            else if(curX == -1 && !que.empty())
            {
                que.push({-1, -1});
                ++len;
                continue;
            }

            for(int i = 0; i < 4; ++i)
            {
                int tx = curX + dirs[i][0];
                int ty = curY + dirs[i][1];

                // 越界
                if(tx < 0 || ty < 0 || tx >= grid.size() || ty >= grid[x].size())
                {
                    continue;
                }
                // 障碍
                if(gridFlag[tx][ty] == '#')
                {
                    continue;
                }
                // 锁 + 没有对应的 key
                if(isupper(gridFlag[tx][ty]) && 
                   keysSeached.find(tolower(gridFlag[tx][ty])) == keysSeached.npos)
                {
                    continue;
                }

                // 当前的 key
                if(gridFlag[tx][ty] == curKey && 
                   keysSeached.find(gridFlag[tx][ty]) == keysSeached.npos)
                {
                    return {tx, ty};
                }

                // 锁+有对应的 key,起点`@`, 路 `.`,处理过的key
                gridFlag[tx][ty] = '#';
                que.push({tx, ty});
            }
        }

        return {-1, -1};
    }

    // 返回距离
    int DFS(const vector<string>& grid, int x, int y, 
            string keysSeached, string keysSeaching)
    {
        if(x < 0 || y < 0 || x >= grid.size() || y >= grid[x].size())
        {
            return -1;
        }
        if(keysSeaching.empty())
        {
            return 0;
        }

        int ans = -1;
        for(int i = 0; i < keysSeaching.size(); ++i)
        {
            int nextLen = 1;
            pair<int, int> nextPos = BFS(grid, x, y, keysSeached, keysSeaching[i], nextLen);
            if(nextPos.first == -1) continue;
            string keysSeachedRef(keysSeached), keysSeachingRef(keysSeaching);
            keysSeachedRef.push_back(grid[nextPos.first][nextPos.second]);
            keysSeachingRef.erase(keysSeaching.find(grid[nextPos.first][nextPos.second]), 1);

            int ret = DFS(grid, nextPos.first, nextPos.second, keysSeachedRef, keysSeachingRef);

            if(ret == -1) continue;
            if(ans == -1 || ans > ret+nextLen) ans = ret + nextLen;
        }

        return ans;
    }
public:
    // DFS + BFS search solution
    int shortestPathAllKeys(vector<string>& grid) {
        bool ans = -1;
        pair<int, int> startPos;
        string keys;

        for(int i = 0; i < grid.size(); ++i)
        {
            for(int j = 0; j < grid[i].size(); ++j)
            {
                if(grid[i][j] == '@')
                {
                    startPos = {i, j};
                }

                if(islower(grid[i][j]))
                {
                    keys.push_back(grid[i][j]);
                }
            }
        }

        return DFS(grid, startPos.first, startPos.second, "", keys);
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值