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

NEERC17 J Journey from Petersburg to Moscow

时间:2018-10-24 22:03:58      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:name   amp   click   href   const   onclick   cli   复杂度   names   

CF上可以提交。   链接

依然是很妙的解法。

我们可以枚举每一个出现过的边权$L$,然后把所有边的边权减掉这个$L$,如果小于$L$就变为$0$,然后跑一遍最短路然后加上$k * L$更新答案即可。

注意$L$也可以取到$0$。

这样做就是强制让出了前$k$大的边的边权,所以能计算到所有答案。

时间复杂度$O(n^2logn)$。

Code:

技术分享图片
#include <cstdio>
#include <cstring>
#include <queue>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef pair <ll, int> pin;

const int N = 3005;
const ll inf = 0x3f3f3f3f3f3f3f3f;

int n, m, K, vCnt = 0, tot = 0, head[N];
ll eVal[N], dis[N];
bool vis[N];

struct Edge {
    int to, nxt;
    ll val;
} e[N << 1];

inline void add(int from, int to, ll val) {
    e[++tot].to = to;
    e[tot].val = val;
    e[tot].nxt = head[from];
    head[from] = tot;
}

template <typename T>
inline void read(T &X) {
    X = 0; char ch = 0; T op = 1;
    for(; ch > 9 || ch < 0; ch = getchar())
        if(ch == -) op = -1;
    for(; ch >= 0 && ch <= 9; ch = getchar())
        X = (X << 3) + (X << 1) + ch - 48;
    X *= op;
}

inline ll max(ll x, ll y) {
    return x > y ? x : y;
}

template <typename T>
inline void chkMin(T &x, T y) {
    if(y < x) x = y;
}

priority_queue <pin> Q;
void dij(ll nowL) {
    memset(dis, 0x3f, sizeof(dis));
    memset(vis, 0, sizeof(vis));
    Q.push(pin(dis[1] = 0LL, 1));
    for(; !Q.empty(); ) {
        int x = Q.top().second; Q.pop();
        if(vis[x]) continue;
        vis[x] = 1;
        for(int i = head[x]; i; i = e[i].nxt) {
            int y = e[i].to; ll val = max(0LL, e[i].val - nowL) + dis[x];
            if(val < dis[y]) {
                dis[y] = val;
                Q.push(pin(-dis[y], y));
            }
        }
    }
}

int main() {
    read(n), read(m), read(K);
    for(int i = 1; i <= m; i++) {
        int x, y; ll v;
        read(x), read(y), read(v);
        add(x, y, v), add(y, x, v);
        eVal[++vCnt] = v; 
    }
    eVal[++vCnt] = 0LL;
    
    sort(eVal + 1, eVal + 1 + vCnt);
    vCnt = unique(eVal + 1, eVal + 1 + vCnt) - eVal - 1;
    
    ll ans = inf;
    for(int i = 1; i <= vCnt; i++) {
        dij(eVal[i]);
        chkMin(ans, dis[n] + 1LL * K * eVal[i]);
    }
    
    printf("%lld\n", ans);
    return 0;
}
View Code

 

NEERC17 J Journey from Petersburg to Moscow

标签:name   amp   click   href   const   onclick   cli   复杂度   names   

原文地址:https://www.cnblogs.com/CzxingcHen/p/9845754.html

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