hdu 3631 Shortest Path 最短路径+插点法+floyd

题目链接

题意:给出n个点,m条边,q个操作。对两个点的路径不得经过未标记的点。操作可以标记点或者询问两个点之间的距离,若操作非法则返回指定语句,否则执行操作。

作为中间点,一个点一个点插入,理解Floyd的过程即可。

#include <iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#define N 330
#define INF 0x7ffffff

using namespace std;

int mp[N][N],v[N],n,m,q;

void floyd(int k)
{
    for(int i=0;i<n;i++)
        for(int j=0;j<n;j++)
            mp[i][j]=min(mp[i][j],mp[i][k]+mp[k][j]);
}

int main()
{
    int kase=0;
    while(~scanf("%d%d%d",&n,&m,&q)&&(n||m||q))
    {
        for(int i=0;i<n;i++)
            for(int j=0;j<n;j++)
                if(i==j)    mp[i][j]=0;
                    else    mp[i][j]=INF;
        memset(v,0,sizeof(v));
        for(int i=0;i<m;i++)
        {
            int u,v,w;
            scanf("%d%d%d",&u,&v,&w);
            if(mp[u][v]>w)  mp[u][v]=w;
        }
        if(kase)    cout<<endl;
        printf("Case %d:\n",++kase);
        for(int i=0;i<q;i++)
        {
            int t,x,y;
            scanf("%d%d",&t,&x);
            if(!t)
            {
                if(v[x])
                {
                    printf("ERROR! At point %d\n",x);
                    continue;
                }
                v[x]=1;
                floyd(x);
            }
            else
            {
                scanf("%d",&y);
                if(v[x]==0||v[y]==0)    printf("ERROR! At path %d to %d\n",x,y);
                    else if(mp[x][y]>=INF)   cout<<"No such path"<<endl;
                        else    cout<<mp[x][y]<<endl;
            }
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值