博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
|Vijos|图论最短路|P1391 想越狱的小杉
阅读量:5042 次
发布时间:2019-06-12

本文共 788 字,大约阅读时间需要 2 分钟。

http://vijos.org/p/1391

SPFA,感觉不是真正意义上的SPFA。。

#include
#include
#include
#include
#include
#define ms(i,j) memset(i, j, sizeof(i));using namespace std;const int maxn = 2000 + 5;int w[maxn][maxn];int edge[maxn][maxn];int dis[maxn];int ex[maxn];queue
q;int n;int main () { scanf("%d", &n); int a,b,c; for (int i=1;i<=n;i++)for (int j=1;j<=n;j++) w[i][j]=100000000; while (scanf("%d%d%d", &a, &b, &c)==3&&(a||b||c)) { w[a][b]=c; } ms(dis,0);ms(ex,false); dis[1] = 100000000;ex[1]=true; q.push(1); while(!q.empty()) { int u = q.front();q.pop();ex[u]=false; for (int i=1;i<=n;i++) { if (w[u][i]!=100000000&&dis[i]

转载于:https://www.cnblogs.com/flyinthesky1/p/6384334.html

你可能感兴趣的文章
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Mac 下的Chrome 按什么快捷键调出页面调试工具
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>
Google非官方的Text To Speech和Speech Recognition的API
查看>>
stdext - A C++ STL Extensions Libary
查看>>
Django 内建 中间件组件
查看>>