洛谷 P2951 [USACO09OPEN]捉迷藏Hide and Seek

题目描述

Bessie is playing hide and seek (a game in which a number of players hide and a single player (the seeker) attempts to find them after which various penalties and rewards are assessed; much fun usually ensues).

She is trying to figure out in which of N (2 <= N <= 20,000) barns conveniently numbered 1..N she should hide. She knows that FJ (the seeker) starts out in barn 1. All the barns are connected by M (1 <= M <= 50,000) bidirectional paths with endpoints A_i and B_i (1 <= A_i <= N; 1 <= B_i <= N; A_i != B_i); it is possible to reach any barn from any other through the paths.

Bessie decides that it will be safest to hide in the barn that has the greatest distance from barn 1 (the distance between two barns is the smallest number of paths that one must traverse to get from one to the other). Help Bessie figure out the best barn in which to hide.

奶牛贝西和农夫约翰(FJ)玩捉迷藏,现在有N个谷仓,FJ开始在第一个谷仓,贝西为了不让FJ找到她,当然要藏在距离第一个谷仓最远的那个谷仓了。现在告诉你N个谷仓,和M个两两谷仓间的“无向边”。每两个仓谷间当然会有最短路径,现在要求距离第一个谷仓(FJ那里)最远的谷仓是哪个(所谓最远就是距离第一个谷仓最大的最短路径)?如有多个则输出编号最小的。以及求这最远距离是多少,和有几个这样的谷仓距离第一个谷仓那么远。

输入输出格式

输入格式:

 

  • Line 1: Two space-separated integers: N and M

  • Lines 2..M+1: Line i+1 contains the endpoints for path i: A_i and B_i

第一行:两个整数N,M;

第2-M+1行:每行两个整数,表示端点A_i 和 B_i 间有一条无向边。

 

输出格式:

 

  • Line 1: On a single line, print three space-separated integers: the index of the barn farthest from barn 1 (if there are multiple such barns, print the smallest such index), the smallest number of paths needed to reach this barn from barn 1, and the number of barns with this number of paths.

仅一行,三个整数,两两中间空格隔开。表示:距离第一个谷仓最远的谷仓编号(如有多个则输出编号最小的。),以及最远的距离,和有几个谷仓距离第一个谷仓那么远。

 

输入输出样例

输入样例#1:
6 7 
3 6 
4 3 
3 2 
1 3 
1 2 
2 4 
5 2 
输出样例#1:
4 2 3 

说明

The farm layout is as follows:

Barns 4, 5, and 6 are all a distance of 2 from barn 1. We choose barn 4 because it has the smallest index.

这里谷仓4,5,6距离1号谷仓都是2,但是4编号最小所以输出4.因此最远距离是2且有3个谷仓,依次输出:2和3。 

感谢 wjcwinmt 的贡献翻译

 

最短路

堆优化dijkstra练习 

屠龙宝刀点击就送

#include <algorithm>
#include <ctype.h>
#include <cstring>
#include <cstdio>
#include <queue>
#define N 100005
using namespace std;
struct node
{
    int x,y;
    bool operator<(node a)const
    {
        return y>a.y;
    }
};
struct dist
{
    int num,dis;
    bool operator<(dist b)const
    {
        if(dis==b.dis) return num<b.num;
        return dis>b.dis;
    }
}p[N];
priority_queue<node>q;
inline void read(int &x)
{
    x=0;bool f=0;
    register char ch=getchar();
    for(;!isdigit(ch);ch=getchar()) if(ch=='-') f=1;
    for(; isdigit(ch);ch=getchar()) x=x*10+ch-'0';
    x=f?-x:x; 
}
bool vis[N];
int n,m,head[N],to[N],Next[N],cnt;
int main()
{
    freopen("hideseek.in","r",stdin);freopen("hideseek.out","w",stdout);
    read(n);
    read(m);
    for(int x,y;m--;)
    {
        read(x);
        read(y);
        Next[++cnt]=head[x];to[cnt]=y;head[x]=cnt;
        Next[++cnt]=head[y];to[cnt]=x;head[y]=cnt;
    }
    for(int i=1;i<=n;i++) p[i].num=i,p[i].dis=0x7ffffff;
    p[1].dis=0;
    node a;
    a.x=1;a.y=p[1].dis;
    q.push(a);
    while(!q.empty())
    {
        node a=q.top();q.pop();
        if(vis[a.x]) continue;
        vis[a.x]=1;
        for(int i=head[a.x];i;i=Next[i])
        {
            int v=to[i];
            if(p[v].dis>p[a.x].dis+1)
            {
                p[v].dis=p[a.x].dis+1;
                node b;
                b.x=v;b.y=p[v].dis;
                q.push(b); 
            }
        }
    }
    sort(p+1,p+1+n);
    printf("%d %d",p[1].num,p[1].dis);
    int same=p[1].dis,ans=1;
    for(int i=2;i<=n;i++)
    {
        if(p[i].dis==same) ans++;
        else break;
    }
    printf(" %d",ans);
    return 0;
}

 

转载于:https://www.cnblogs.com/ruojisun/p/7354870.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值