1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
752.打开转盘锁.cpp 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-24 14:14 . BFS
/*
* @lc app=leetcode.cn id=752 lang=cpp
*
* [752] 打开转盘锁
*/
// @lc code=start
class Solution {
public:
int openLock(vector<string>& deadends, string target) {
if (target == "0000") return 0;
unordered_set<string> seen(deadends.begin(), deadends.end());
if (seen.count("0000")) return -1;
auto num_pre = [](char x) -> char {
return x == '0' ? '9' : x - 1;
};
auto num_succ = [](char x) -> char {
return x == '9' ? '0' : x + 1;
};
auto get = [&](string& status) -> vector<string> {
vector<string> ret;
for (int i = 0; i < 4; ++i) {
char num = status[i];
status[i] = num_pre(num);
ret.emplace_back(status);
status[i] = num_succ(num);
ret.emplace_back(status);
status[i] = num;
}
return ret;
};
queue<string> que;
que.emplace("0000");
int step = 1;
while (!que.empty()) {
int sz = que.size();
for (int j = 0; j < sz; ++j) {
string cur = que.front();
que.pop();
for (auto& next_status : get(cur)) {
if (!seen.count(next_status)) {
if (next_status == target) return step;
que.emplace(next_status);
seen.emplace(next_status);
}
}
}
step++;
}
return -1;
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助