• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
2014>
博客园    首页    新随笔    联系   管理    订阅  订阅
6月8日

leetcode 每日一题 https://leetcode-cn.com/problems/satisfiability-of-equality-equations/

思路:并查集  先把所有==合并,再将所有 !=查找。如果是同一个父亲就return false 。

 

class Solution:
    def equationsPossible(self, equations: 'List[str]') -> 'bool':
        fa={chr(i):chr(i) for i in range(97,125)}

        def find(x):
            if x!= fa[x]:
                fa[x] = find(fa[x])
            return fa[x]

        for it in  equations:
            if(it[1]=="="):
                fa[find(it[0])]=find(it[3])

        for it in equations:
            if (it[1] == "!"):
                if(find(it[3])==find(it[0])):
                    return False


        return True

 

posted on 2020-06-09 13:47  2014>  阅读(89)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3