会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
seasonal
博客园
首页
管理
2016年12月3日
【Dijkstra模板】codeforces715B Complete The Graph(最短路径)
摘要: 记录一下Dijkstra的模板,主要加了一个优先队列,时间复杂度变成O(mlogn),速度快了很多。struct Edge{ int from, to, dist; Edge(int u, int v, int w) :from(u), to(v), dist(w) ...
阅读全文
posted @ 2016-12-03 12:21 seasonal
阅读(93)
评论(0)
推荐(0)
编辑