python学习笔记7-图的建立常用技巧

题目链接

  • 题目中给了邻接链表,转为邻接矩阵
  • 初始化邻接矩阵 graph = [[] for _ in range(n)]
  • dfs() 的写法, 用visi避免重复访问,得到每个点所在的联通分量中点的个数
python 复制代码
class Solution:
    def countPairs(self, n: int, edges: List[List[int]]) -> int:
        graph = [[] for _ in range(n)]
        for x, y in edges:
            graph[x].append(y)
            graph[y].append(x)
        
        visi = [False] * n
        def dfs(x: int) -> int:
            visi[x] = True
            count = 1
            for y in graph[x]:
                if not visi[y]:
                    count += dfs(y)
            return count

        res = 0
        for i in range(n):
            if not visi[i]:
                count = dfs(i)
                res += count * (n - count)

        return res // 2
相关推荐
萧鼎12 分钟前
RAGFlow:构建高效检索增强生成流程的技术解析
人工智能·python
cooljser22 分钟前
告别手动操作!用脚本搞定小程序签到的全过程
python
凌叁儿37 分钟前
从零开始搭建Django博客①--正式开始前的准备工作
python·django·sqlite
攻城狮7号2 小时前
Python爬虫第19节-动态渲染页面抓取之Splash使用下篇
开发语言·爬虫·python·python爬虫
天天进步20152 小时前
Python项目--基于计算机视觉的手势识别控制系统
开发语言·python·计算机视觉
MarsBighead2 小时前
Pgvector+R2R搭建RAG知识库
python·ai·postgresql·rag·pgvector
早睡早起吧2 小时前
目标检测篇---faster R-CNN
人工智能·python·目标检测·计算机视觉·cnn
Alive~o.02 小时前
【网络应用程序设计】实验四:物联网监控系统
linux·网络·python·物联网·课程设计
大模型真好玩2 小时前
RAG系统效果不达预期?一定要看看这篇详细高效的优化指南!
人工智能·python·mcp
啊阿狸不会拉杆3 小时前
数据结构-排序
java·c语言·数据结构·c++·python·算法·排序算法