记录编号 |
189932 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
[福州培训2010] 最短路 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.063 s |
提交时间 |
2015-09-30 18:12:41 |
内存使用 |
0.36 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=110;
const int maxm=3000;
//const int mod=10007;
int d[maxn][maxn];
int main()
{
freopen("shorta.in","r",stdin);
freopen("shorta.out","w",stdout);
//clock_t st=clock();
memset(d,0x3f,sizeof(d));
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++) d[i][i]=0;
int u,v,w;
for(int i=1;i<=m;i++)
{
scanf("%d%d%d",&u,&v,&w);
d[u][v]=w;d[v][u]=w;
}
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(d[i][j]>d[i][k]+d[k][j])
d[i][j]=d[i][k]+d[k][j];
}
}
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
printf("%d ",d[i][j]);
}
printf("\n");
}
//clock_t ed=clock();
//printf("\nTime used : %.7lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}