zoukankan      html  css  js  c++  java
  • cf567E. President and Roads(最短路计数)

    题意

    题目链接

    给出一张有向图,以及起点终点,判断每条边的状态:

    1. 是否一定在最短路上,是的话输出'YES'

    2. 如果不在最短路上,最少减去多少权值会使其在最短路上,如果减去后的权值(< 1),输出'NO',否则输出'CAN + 花费'

    Sol

    考察对最短路的理解。

    首先确定哪些边一定在最短路上,一个条件是 从起点到该点的最短路 + 边权 + 从该点到终点的最短路 = 从起点到终点的最短路

    同时还要满足没有别的边可以代替这条边,可以用Tarjan求一下桥。当然也可以直接用最短路条数判

    这样的话正反跑一边Dijkstra求出最短路以及最短路径的条数,判断一下即可

    #include<bits/stdc++.h>
    #define Pair pair<LL, int> 
    #define MP make_pair
    #define fi first
    #define se second 
    #define LL  long long
    using namespace std;
    const int MAXN = 2e5 + 10;
    const LL INF = 1e18 + 10; 
    const LL mod1 = 2860486313LL, mod2 = 1500450271LL; 
    inline int read() {
        char c = getchar(); int x = 0, f = 1;
        while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
        while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
        return x * f;
    }
    int N, M, S, T, vis[MAXN];
    LL f[MAXN], g[MAXN], f2[MAXN], g2[MAXN];
    LL dis[MAXN], rdis[MAXN];
    vector<Pair> v[MAXN], t[MAXN];
    struct Edge { int u, v; LL w;} E[MAXN];
    LL add(LL x, LL y, LL mod) {
        return (x + y >= mod ? x + y - mod : x + y);
    }
    void Dij(int S, LL *d, LL *f, LL *f2, int opt) {
        priority_queue<Pair> q; q.push(MP(0, S));
        for(int i = 1; i <= N; i++) d[i] = INF;
        d[S] = 0; f[S] = f2[S] = 1; memset(vis, 0, sizeof(vis)); 
        while(!q.empty()) {
            if(vis[q.top().se]) {q.pop(); continue;}
            int p = q.top().se; q.pop(); vis[p] = 1;
            vector<Pair> *e = (opt == 1 ? v + p : t + p);
            for(int i = 0; i < e -> size(); i++) {
                int to = (*e)[i].fi, w = (*e)[i].se;
                if(d[to] > d[p] + w) d[to] = d[p] + w, f[to] = f[p], f2[to] = f2[p], q.push(MP(-d[to], to));
                else if(d[to] == d[p] + w) f[to] = add(f[to], f[p], mod1), f2[to] = add(f2[to], f2[p], mod2);
            }
        }
    }
    signed main() {
        N = read(); M = read(); S = read(); T = read();
        for(int i = 1; i <= M; i++) {
            int x = read(), y = read(), z = read(); E[i] = (Edge) {x, y, z};
            v[x].push_back(MP(y, z)); 
            t[y].push_back(MP(x, z));
        }
        Dij(S, dis, f, f2, 1); 
        Dij(T, rdis, g, g2, 2);
        for(int i = 1; i <= M; i++) {
            int x = E[i].u, y = E[i].v;LL w = E[i].w;
            if((dis[x] + w + rdis[y] == dis[T]) && (1ll * f[x] * g[y] % mod1 == f[T]) && (1ll * f2[x] * g2[y] % mod2 == f2[T])) puts("YES");
            else {
                LL ned = dis[T] - dis[x] - rdis[y] ;
                if(ned <= 1) puts("NO");
                else printf("CAN %I64d
    ", w - ned + 1);
            }
        }
        return 0;
    }
    
  • 相关阅读:
    Office2003中文绿色免安装版本(wordExcelPowerPoint三合一)
    图片去背景神奇网站remove.bg
    网络视频下载分享
    Windows10手机投屏到电脑
    测试开发工程必备技能之一:Mock的使用
    实战教程:如何将自己的Python包发布到PyPI上
    Sysbench测试神器:一条命令生成百万级测试数据
    Java 获取PDF中的数字签名信息
    Java 在Excel中添加分离型饼图、环形图
    C#/VB.NET 添加、删除PPT幻灯片中的数字签名
  • 原文地址:https://www.cnblogs.com/zwfymqz/p/9820531.html
Copyright © 2011-2022 走看看