`
Coco_young
  • 浏览: 125738 次
  • 性别: Icon_minigender_1
  • 来自: 湖南长沙
社区版块
存档分类
最新评论

[第2短路变形]LightOJ 1099 - Not the Best

 
阅读更多
1099 - Not the Best
Time Limit:2 second(s) Memory Limit:32 MB

Robin has moved to a small village and sometimes enjoys returning to visit one of his best friends. He does not want to get to his old home too quickly, because he likes the scenery along the way. He has decided to take the second-shortest rather than the shortest path. He knows there must be some second-shortest path.

The countryside consists ofRbidirectional roads, each linking two of theNintersections, conveniently numbered from1toN. Robin starts at intersection1, and his friend (the destination) is at intersectionN.

The second-shortest path may share roads with any of the shortest paths, and it may backtrack i.e., use the same road or intersection more than once. The second-shortest path is the shortest path whose length is longer than the shortest path(s) (i.e., if two or more shortest paths exist, the second-shortest path is the one whose length is longer than those but no longer than any other path).

Input

Input starts with an integerT (≤ 10), denoting the number of test cases.

Each case contains two integersN (1 ≤ N ≤ 5000)andR (1 ≤ R ≤ 105). Each of the nextRlines contains three space-separated integers:u, vandwthat describe a road that connects intersectionsuandvand has lengthw (1 ≤ w ≤ 5000).

Output

For each case, print the case number and the second best shortest path as described above.

Sample Input

Output for Sample Input

2

3 3

1 2 100

2 3 200

1 3 50

4 4

1 2 100

2 4 200

2 3 250

3 4 100

Case 1: 150

Case 2: 450


PROBLEM SETTER: JANE ALAM JAN

传送门:http://lightoj.com/volume_showproblem.php?problem=1099

题意:对第2短路做了一个新的定义,如果存在多条最短路,那么一条比最短路长,而且比其他所有路径短的路径才是第2短路。

思路:和上一题差不多,直接用A*,然后改变退出条件即可,即 cur.f > dist[src]

代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;
const int MAXN = 5555,MAXM = 111111;
int inQ[MAXN],dist[MAXN],t,n,m,head[MAXN],ecnt;
struct edge{
    int v,w,nxt;
    edge(){nxt=-1;}
    edge(int vv,int ww,int nx):v(vv),w(ww),nxt(nx){}
}next[MAXM<<1];
void init(){
    memset(inQ,0,sizeof(inQ));
    fill(dist,dist+MAXN,0x3fffffff);
    memset(head,-1,sizeof(head));
    ecnt = 0;
}
void add(int u,int v,int w){
    next[ecnt++] = edge(v,w,-1);
    next[ecnt++] = edge(u,w,-1);
    next[ecnt-2].nxt = head[u];
    head[u] = ecnt-2;
    next[ecnt-1].nxt = head[v];
    head[v] = ecnt-1;
}
struct node{
    int f,g,v;
    node(){}
    node(int ff,int gg,int vv):f(ff),g(gg),v(vv){}
    bool operator < (const node &n) const{
        return n.f < f;
    }
};
void spfa(int src){
    queue<int> Q;
    Q.push(src);
    inQ[src] = 1;
    dist[src] = 0;
    while(!Q.empty()){
        int now = Q.front();
        Q.pop();inQ[now]=0;
        for(int i=head[now];i!=-1;i=next[i].nxt){
            if(dist[next[i].v]>dist[now]+next[i].w){
                dist[next[i].v] = dist[now]+next[i].w;
                if(!inQ[next[i].v]){
                    inQ[next[i].v]=1;
                    Q.push(next[i].v);
                }
            }
        }
    }
}
int Astar(int src){
    priority_queue<node> PQ;
    memset(inQ,0,sizeof(inQ));
    PQ.push(node(dist[src],0,src));
    while(!PQ.empty()){
        node cur = PQ.top();
        PQ.pop();inQ[cur.v]++;
        //cout<<cur.f<<endl;
        if(cur.f>dist[src]){
            return cur.f;
        }
        for(int i=head[cur.v];i!=-1;i=next[i].nxt){
            node expand(cur.g+dist[next[i].v]+next[i].w,cur.g+next[i].w,next[i].v);
            PQ.push(expand);
        }
    }
    return -1;
}
int main(){
    scanf("%d",&t);
    for(int cas=1;cas<=t;cas++){
        scanf("%d%d",&n,&m);
        init();
        while(m--){
            int a,b,c;
            scanf("%d%d%d",&a,&b,&c);a--,b--;
            add(a,b,c);
        }
        spfa(n-1);
        printf("Case %d: %d\n",cas,Astar(0));
    }
    return 0;
}


分享到:
评论

相关推荐

    LightOJ-Solved-Code:LightOJ 解决问题代码

    【标题】"LightOJ-Solved-Code"指的是一个关于在Light Online Judge平台上解决编程问题的代码集合。这个集合很可能包含了作者在LightOJ上解答各类算法问题的C++源代码。LightOJ是一个在线的编程竞赛平台,它提供了一...

    lightoj-tutorial-editorial-by-sayeed:像Codeforces编辑模式一样在lightoj上发表社论​​!

    标题中的“lightoj-tutorial-editorial-by-sayeed”指的是LightOJ(Light Online Judge)平台上的一篇教程或社论,由用户Sayeed撰写,旨在帮助用户了解如何在LightOJ上创建类似于Codeforces编辑模式的教程。...

    LightOJ-solutions

    【标题】"LightOJ-solutions" 是一个与编程竞赛相关的资源,主要包含了参与 LightOJ(Light Online Judge)平台的解题方案。这个压缩包很可能是某位参赛者或编程爱好者整理的代码集合,旨在分享他们在解决 LightOJ ...

    LightOJ

    "LightOJ"是一个在线判题系统,专为竞赛编程和算法训练而设计。它允许用户提交代码并立即获得运行结果、时间复杂度和空间复杂度等反馈。这个平台广泛支持多种编程语言,包括C++,因此在标签中提到了"C++"。现在我们...

    leetcode中国-ACM_Training::balloon:不是为了比赛,而是为了训练和兴趣

    2. BNU 1440 --- basic dfs 3. POJ 1190 --- dfs + pruning(Strong) 4. UVALive 2243 --- dfs 5. FZU 2196 --- double bfs 6. PKU 1426 --- bfs + pruning 7. BNU 1038 --- dfs transform 8. PKU 1562 --- dfs ...

    CHelper同伴「CHelper Companion」「Competitive Companion」-crx插件

    解析编程问题,并将其发送给CHelper插件以实现IntelliJ IDEA。 竞争性伴侣解析程序...-HackerRank-HDU在线法官-Kattis-LightOJ-NYTD在线法官-PEG法官-POJ-QDUOJ-Timus-URI在线法官 支持语言:English (United States)

    问题教程:一个包含有关LightOJ问题的教程的存储库

    LightOJ是一个在线编程竞赛平台,它为程序员和计算机科学爱好者提供了一系列的算法问题来解决。这个存储库是一个专门针对LightOJ问题的教程集合,旨在帮助用户更好地理解和解决这些问题。下面,我们将深入探讨其中...

    LightOJ:收集我对http上发现的一些问题的解决方案

    【压缩包子文件的文件名称列表】"LightOJ-master"可能是一个Git仓库的名称,暗示了这个问题解决方案可能是开源的,并且包含了一个项目的主分支。通常,这样的仓库会包含源代码、文档、测试用例和其他资源,帮助用户...

    leetcode2sumc-Dynamic-Programming:从各种在线评委(包括Leetcode、SPOJ、LightOJ、Codef

    2 和 c 动态规划 动态规划相关问题的解答。 这些问题来自各种在线评委,包括 、 、 等。 解决方案是用 C++ 编码的。 —— —— —— —— —— —— —— —— —— —— —— —— —— —— ——

    Solved_programming_problems_Online_judges:这个存储库包括我解决的各种在线法官的编程问题的解决方案,即 UVa、Topcoder、Codeforces、Hackerrank、LightOj、Spoj、Project Euler 等

    已解决的编程问题 Online Judges 这个存储库包含我解决的各种在线法官的编程问题的解决方案,即 UVa、Topcoder、Codeforces、Hackerrank、LightOj、Spoj、Project Euler 等。

    problemSolving

    2. **Spoj**:Spoj(Sphere Online Judge)是一个全球性的在线编程竞赛平台,拥有大量的算法题目,支持多种编程语言。通过参与Spoj的比赛,你可以提升在实际时间限制下的编程速度和效率。 3. **Codeforces**:...

    solving-oj-problems

    描述中提到的“uva”,“lightoj”,“spoj”,“timus”都是知名的在线编程竞赛平台,它们为程序员提供了各种算法和逻辑思维的练习题目。 在这个项目的压缩包 "solving-oj-problems-master" 中,我们可以推测它...

    Ishmam-Rahman

    这是乔杜里医学博士。 伊斯玛姆·拉赫曼(Ishmam Rahman) :closed_mailbox_with_raised_flag: 联络我: ... LightOJ: ://lightoj.com/user/ishmam64 脸书: : 目标:使自己在新技术的海洋中立足,在这里我可

    Depressed of Competitive Programming-crx插件

    race_words = [“后缀数组”,“前缀特里”,“动态编程”,“竞赛”,“ codeforces”,“编程”,“竞争性编程”,“算法”,“数据结构”,“ codeforces”,“ light oj”,“ lightoj”,“ spoj”,“堆栈”,...

    开心农场java源码-showrav-ansary:我的GitHub登陆页面

    开心农场java源码AA Noman Ansary 你好呀! 我的名字是AA Noman Ansary 。 但我更喜欢被称为Showrav...问题解决:LightOJ。 代码部队。 蒂姆斯。 紫外线。 成就 以下是我的一些显著成就: BRAC 大学副校长证书。 (2019)

    解决问题:您可以在其中学习算法和数据结构的平台。 竞争程序员的天堂

    这个仓库是关于什么的 创建该存储库是为了组织与数据结构和算法有关的问题的解决方案。 并且,如果可能的话,为学习与数据结构和算法有关的各种概念提供一种更简单的方法。 以下评委使用的问题 ...

    test_program:编程竞赛问题的自动化工具

    测试程序TestProgram 是针对竞争性编程程序(即 Codeforces、lightOJ、OmegaUp 等)的专用测试工具。 当我们解决问题时,我们必须非常小心,并致力于解决所有可能的情况。 我们的解决方案在登顶前正确解决的测试用例...

Global site tag (gtag.js) - Google Analytics