前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >752. Open the Lock

752. Open the Lock

作者头像
用户1147447
发布2019-05-26 00:15:43
2880
发布2019-05-26 00:15:43
举报
文章被收录于专栏:机器学习入门

LWC 64: 752. Open the Lock

Problem:

You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: ‘0’, ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’. The wheels can rotate freely and wrap around: for example we can turn ‘9’ to be ‘0’, or ‘0’ to be ‘9’. Each move consists of turning one wheel one slot. The lock initially starts at ‘0000’, a string representing the state of the 4 wheels. You are given a list of deadends dead ends, meaning if the lock displays any of these codes, the wheels of the lock will stop turning and you will be unable to open it. Given a target representing the value of the wheels that will unlock the lock, return the minimum total number of turns required to open the lock, or -1 if it is impossible.

Example 1:

Input: deadends = [“0201”,”0101”,”0102”,”1212”,”2002”], target = “0202” Output: 6 Explanation: A sequence of valid moves would be “0000” -> “1000” -> “1100” -> “1200” -> “1201” -> “1202” -> “0202”. Note that a sequence like “0000” -> “0001” -> “0002” -> “0102” -> “0202” would be invalid, because the wheels of the lock become stuck after the display becomes the dead end “0102”.

Example 2:

Input: deadends = [“8888”], target = “0009” Output: 1 Explanation: We can turn the last wheel in reverse to move from “0000” -> “0009”.

Example 3:

Input: deadends = [“8887”,”8889”,”8878”,”8898”,”8788”,”8988”,”7888”,”9888”], target = “8888” Output: -1 Explanation: We can’t reach the target without getting stuck.

Example 4:

Input: deadends = [“0000”], target = “8888” Output: -1

Note:

  • The length of deadends will be in the range [1, 500].
  • target will not be in the list deadends.
  • Every string in deadends and the string target will be a string of 4 digits from the 10,000 possibilities ‘0000’ to ‘9999’.

思路: 实际上每一位有10种变化情况,总共有4位,所以有4104^{10}种状态,初始从”0000”开始衍变,到target的最短路径可以用BFS来表达。当然,当衍变到deadends中的某些状态时,就不能再衍变了。典型的BFS+状态记录。

Java版本:

代码语言:javascript
复制
    public int openLock(String[] deadends, String target) {
        Set<String> vis = new HashSet<>();
        for (int i = 0; i < deadends.length; ++i) {
            vis.add(deadends[i]);
        }

        Queue<String> queue = new ArrayDeque<>();
        queue.offer("0000");
        if (vis.contains("0000")) return -1;

        vis.add("0000");
        int[] downUp = {1, -1};
        int turn = 0;
        while (!queue.isEmpty()) {
            int size = queue.size();
            for (int i = 0; i < size; ++i) {
                String now = queue.poll();
                if (now.equals(target)) {
                    return turn;
                }
                for (int j = 0; j < 4; ++j) {
                    for (int k = 0; k < 2; ++k) {
                        char[] cs = now.toCharArray();
                        int digit = (cs[j] - '0' + downUp[k] + 10) % 10;
                        cs[j] = (char) ('0' + digit);
                        String nxt = new String(cs);
                        if (!vis.contains(nxt)) {
                            vis.add(nxt);
                            queue.offer(nxt);
                        }
                    }
                }
            }
            turn ++;
        }
        return -1;
    }

不过我更喜欢数字版的,哈哈。

数字版本:

代码语言:javascript
复制
    public int openLock(String[] deadends, String target) {
        int tar = Integer.parseInt(target);
        Set<Integer> vis = new HashSet<>();
        for (int i = 0; i < deadends.length; ++i) {
            vis.add(Integer.parseInt(deadends[i]));
        }

        Queue<Integer> queue = new ArrayDeque<>();
        queue.offer(0);
        if (vis.contains(0)) return -1;
        vis.add(0);

        int[] ten    = {1000, 100, 10, 1};
        int[] downUp = {1, -1};
        int turn = 0;

        while (!queue.isEmpty()) {
            int size = queue.size();
            for (int i = 0; i < size; ++i) {
                int now = queue.poll();
                if (now == tar) {
                    return turn;
                }
                for (int j = 0; j < 4; ++j) {
                    for (int k = 0; k < 2; ++k) {
                        int[] digits = new int[4];
                        for (int l = 0; l < 4; ++l) {
                            digits[l] = now / ten[l] % 10;
                        }
                        digits[j] = (digits[j] + downUp[k] + 10) % 10;
                        int nxt = 0;
                        for (int l = 3; l >= 0; --l) {
                            nxt = 10 * nxt + digits[l];
                        }
                        if (!vis.contains(nxt)) {
                            vis.add(nxt);
                            queue.offer(nxt);
                        }
                    }
                }
            }
            turn ++;
        }
        return -1;
    }

Python版本:

代码语言:javascript
复制
    def openLock(self, deadends, target):
        """
        :type deadends: List[str]
        :type target: str
        :rtype: int
        """
        vis = set(deadends)
        queue = []
        queue.append("0000")
        if ("0000" in vis): return -1
        vis.add("0000")

        turn = 0
        while queue:
            size = len(queue)
            for i in range(size):
                now = queue.pop(0)
                if (now == target): return turn
                for j in range(4):
                    for k in [-1, 1]:
                        digit = int(now[j])
                        digit = (digit + k + 10) % 10
                        nxt = now[: j] + str(digit) + now[j + 1 :] 
                        if nxt not in vis:
                            vis.add(nxt)
                            queue.append(nxt)
            turn += 1
        return -1
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2017年12月24日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 64: 752. Open the Lock
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档