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

NYOJ 115 城市平乱

时间:2014-08-20 17:55:52      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   代码   

思路:最短路径算法

 

决心用这道题好好练练最短路径~

 

先附上flody算法,超时了

代码:

#include <iostream>
#define INF 99999
using namespace std;

int e[1001][1001];//地图,邻接矩阵储存
int N,M,P,Q;
int n[101];//代表部队驻扎的点

void flody();//flody算法

int main()
{
    int res;
    int num;
    cin>>num;
    int a,b,c;
    while(num--)
    {
        res = INF;
        //N表示部队数,M表示城市数,P表示城市之间的路的条数,Q表示发生暴乱的城市编号
        cin>>N>>M>>P>>Q;
        
        for(int i=1;i<=N;i++)
        {
            cin>>n[i];
        }
        
        //地图初始化
        for(int i=1;i<=M;i++)
        {
            for(int j=1;j<=M;j++)
            {
                if(i==j)
                    e[i][j] = 0;
                else
                {
                    e[i][j] = INF;
                }
            }
        }     


        for(int i=1;i<=P;i++)
        {
            cin>>a>>b>>c;
            e[a][b] = c;
            e[b][a] = c;
        }
        
        flody();    
        
        for(int i=1;i<=N;i++)
        {
            res = min(e[Q][n[i]],res);
        } 
            
        cout<<res<<endl;
    }
    return 0;
}

//flody核心算法,估计超时。。
void flody()
{
    for(int i=1;i<=M;i++)
    {
        for(int j=1;j<=M;j++)
        {
            for(int k=1;k<=M;k++)
            {
                if(e[j][k]>e[j][i]+e[i][k])
                    e[j][k] = e[j][i]+e[i][k];
            }
        }
    }
}

 

NYOJ 115 城市平乱,布布扣,bubuko.com

NYOJ 115 城市平乱

标签:style   blog   color   os   io   for   div   代码   

原文地址:http://www.cnblogs.com/ltwy/p/3925059.html

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