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

hdu-1874 题解

时间:2017-08-07 10:06:02      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:front   push   clu   vector   climits   style   names   cin   include   

裸SPFA模板题,注意算法中每次扩展完成后要把vis标记取消

#include<iostream>
#include<algorithm>
#include<queue>
#include<vector>
#include<climits>
using namespace std;
struct edgetype
{
    int to;
    int len;
};
struct pointtype
{
    bool vis;
    vector<edgetype> next;
    int dis;
}point[201];
queue<int> q;
int main()
{
    int n,m;
    while(cin>>n>>m)
    {
        for(int i=0;i<n;i++)
        {
            point[i].vis=false;
            point[i].dis=INT_MAX;
            point[i].next.clear();
        }
        for(int i=1;i<=m;i++)
        {
            int s,t,l;
            cin>>s>>t>>l;
            edgetype tmp;
            tmp.to=t;
            tmp.len=l;
            point[s].next.push_back(tmp);
            tmp.to=s;
            point[t].next.push_back(tmp);
        }
        int s,t;
        cin>>s>>t;
        point[s].dis=0;
        point[s].vis=true;
        q.push(s);
        while(!q.empty())
        {
            int now=q.front();
            vector<edgetype>::iterator it;
            for(it=point[now].next.begin();it!=point[now].next.end();it++)
            {
                if(point[(*it).to].dis>point[now].dis+(*it).len)
                {
                    point[(*it).to].dis=point[now].dis+(*it).len;
                    if(!point[(*it).to].vis)
                    {
                        point[(*it).to].vis=true;
                        q.push((*it).to);
                    }
                }
            }
            point[now].vis=false;
            q.pop();
        }
        int res=point[t].dis;
        if(res==INT_MAX)
        {
            res=-1;
        }
        cout<<res<<endl;;
    }
    return 0;
}

 

hdu-1874 题解

标签:front   push   clu   vector   climits   style   names   cin   include   

原文地址:http://www.cnblogs.com/shao0099876/p/7297428.html

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