POJ3259——Wormholes

题目链接:http://poj.org/problem?id=3259

Wormholes

题目大意:给你n个点,m条双向联通的权值为正的路,和w条单向联通权值为负的路。让你判断是否存在负环。

用队列实现,判断是否存在负环。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#define INF 0xfffffff
using namespace std;

const int V=510;
const int E=6000;
int n,m,w,e;
int pnt[E],cost[E],nxt[E];
int head[V],dis[V];
int vis[V];
int cnt[V];

int relax(int u,int v,int c)
{
    if(dis[v]>dis[u]+c)
    {
        dis[v]=dis[u]+c;
        return 1;
    }
    return 0;
}

inline void addedge(int u,int v,int c)
{
    pnt[e]=v;
    cost[e]=c;
    nxt[e]=head[u];
    head[u]=e++;
}

int SPFA(int src,int n)
{
    int i;
    memset(cnt,0,sizeof(cnt));
    memset(vis,0,sizeof(vis));
    for(i=1;i<=n;i++)
        dis[i]=INF;
    dis[src]=0;
    queue<int> Q;
    Q.push(src);
    vis[src]=1;
    ++cnt[src];
    while(!Q.empty())
    {
        int u,v;
        u=Q.front();
        Q.pop();
        vis[u]=0;
        for(i=head[u];i!=-1;i=nxt[i])
        {
            v=pnt[i];
            if(relax(u,v,cost[i])&&!vis[v])
            {
                Q.push(v);
                vis[v]=1;
                if(++cnt[v]>n)
                    return -1;
            }
        }
    }
    if(dis[n]==INF)
        return -2;
    return 1;
}

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int i,a,b,c;
        e=0;
        memset(head,-1,sizeof(head));
        scanf("%d%d%d",&n,&m,&w);
        for(i=0;i<m;i++)
        {
            scanf("%d%d%d",&a,&b,&c);
            addedge(a,b,c);
            addedge(b,a,c);
        }
        for(i=0;i<w;i++)
        {
            scanf("%d%d%d",&a,&b,&c);
            addedge(a,b,-c);
        }
        if(SPFA(1,n)>0)
            printf("NO\n");
        else
            printf("YES\n");
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值