JLOI2011 飞行路线

Posted wxl-ezio

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JLOI2011 飞行路线相关的知识,希望对你有一定的参考价值。

传送门

分层图(SPFA)……听起来好高级的样子……嗯,所以我选分层图( m{dijkstra})

技术分享图片

这题好像是会卡(SPFA),要加一个玄学(SLF)优化才可以……

所以还是用堆优化( m{dijkstra})吧,多好技术分享图片

以上全是瞎扯,但卡(SPFA)真的


( t{dis[i][j]})表示免费乘坐了(i)次到达点(j)的最小代价,跑最短路的时候顺推下来就可以了

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
int read(){
    int k=0; char c=getchar();
    for(;c<'0'||c>'9';) c=getchar();
    for(;c>='0'&&c<='9';c=getchar())
      k=(k<<3)+(k<<1)+c-48;
    return k;
}
struct zzz{
    int t,len,nex;
}e[50010<<1]; int head[10010],tot;
void add(int x,int y,int z){
    e[++tot].t=y;
    e[tot].len=z;
    e[tot].nex=head[x];
    head[x]=tot;
}
int dis[21][10010];
struct hhh{
    int v,cnt,pos;
    bool operator < (const hhh &y) const{
        return v > y.v;
    }
};
priority_queue <hhh> q;
void dijkstra(int s,int num){
    memset(dis,127,sizeof(dis)); dis[0][s]=0;
    q.push(hhh{0,0,s});
    while(!q.empty()){
        hhh k=q.top(); q.pop();
        if(dis[k.cnt][k.pos]!=k.v) continue;
        for(int i=head[k.pos];i;i=e[i].nex){
            int to=e[i].t;
            if(dis[k.cnt][to]>dis[k.cnt][k.pos]+e[i].len){
                dis[k.cnt][to]=dis[k.cnt][k.pos]+e[i].len;
                q.push(hhh{dis[k.cnt][to],k.cnt,to});
            }
            if(k.cnt+1<=num&&dis[k.cnt][k.pos]<dis[k.cnt+1][to]){
                dis[k.cnt+1][to]=dis[k.cnt][k.pos];
                q.push(hhh{dis[k.cnt+1][to],k.cnt+1,to});
            }
        }
    }
}
int main(){
    int n=read(),m=read(),k=read();
    for(int i=1;i<=m;i++){
        int x=read(),y=read(),z=read();
        add(x,y,z), add(y,x,z);
    }
    dijkstra(1,k);
    cout<<dis[k][n];
    
    return 0;
}

以上是关于JLOI2011 飞行路线的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ 2763 [JLOI2011]飞行路线

[BZOJ 2763][JLOI 2011] 飞行路线

BZOJ 2763: [JLOI2011]飞行路线

BZOJ 2763: [JLOI2011]飞行路线 spfa dp

Dijkstra BZOJ2763 [JLOI2011]飞行路线

bzoj 2763: [JLOI2011]飞行路线