码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1596

时间:2020-03-06 01:47:28      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:c++   names   href   out   oid   def   name   sync   lse   

HDU 1596

Floyd 变形

根据题目中的定义改写新的最短路更新条件

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
typedef long long LL;
const int N = 1e3 + 10;
const double eps = 1e-6;
int n,a,b,m;
double g[N][N],dist[N][N];
void floyd() {
    for(int k = 1;k <= n; ++k)
        for(int i = 1;i <= n; ++i)
            for(int j = 1;j <= n; ++j)
                g[i][j] = max(g[i][j],g[i][k] * g[k][j]);
}
int main() {
    //ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
    while(cin >> n) {
        for(int i = 1;i <= n; ++i)
            for(int j = 1;j <= n; ++j)
                scanf("%lf",&g[i][j]);
        floyd();
        cin >> m;
        while(m --) {
            cin >> a >> b;
            if(g[a][b] < eps) printf("What a pity!\n");
            else printf("%.3lf\n",g[a][b]);
        }
    }
    return 0;
}

HDU 1596

标签:c++   names   href   out   oid   def   name   sync   lse   

原文地址:https://www.cnblogs.com/lukelmouse/p/12424110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!