ZOJ2913Bus Pass(BFS+set)

时间:2023-01-03 18:35:12

Bus Pass


Time Limit: 5 Seconds      Memory Limit: 32768 KB

You travel a lot by bus and the costs of all the seperate tickets are starting to add up.

Therefore you want to see if it might be advantageous for you to buy a bus pass.

The way the bus system works in your country (and also in the Netherlands) is as follows:

when you buy a bus pass, you have to indicate a center zone and a star value. You are allowed to travel freely in any zone which has a distance to your center zone which is less than your star value. For example, if you have a star value of one, you can only travel in your center zone. If you have a star value of two, you can also travel in all adjacent zones, et cetera.

You have a list of all bus trips you frequently make, and would like to determine the minimum star value you need to make all these trips using your buss pass. But this is not always an easy task. For example look at the following figure:

ZOJ2913Bus Pass(BFS+set)

Here you want to be able to travel from A to B and from B to D. The best center zone is 7400, for which you only need a star value of 4. Note that you do not even visit this zone on your trips!

Input

On the first line an integert(1 <=t<= 100): the number of test cases. Then for each test case:

One line with two integersnz(2 <=nz<= 9 999) andnr(1 <=nr<= 10): the number of zones and the number of bus trips, respectively.

nz lines starting with two integers idi (1 <= idi <= 9 999) and mzi (1 <= mzi <= 10), a number identifying the i-th zone and the number of zones adjacent to it, followed by mzi integers: the numbers of the adjacent zones.

nr lines starting with one integer mri (1 <= mri <= 20), indicating the number of zones the ith bus trip visits, followed by mri integers: the numbers of the zones through which the bus passes in the order in which they are visited.

All zones are connected, either directly or via other zones.

Output

For each test case:

One line with two integers, the minimum star value and the id of a center zone which achieves this minimum star value. If there are multiple possibilities, choose the zone with the lowest number.

Sample Input

1
17 2
7400 6 7401 7402 7403 7404 7405 7406
7401 6 7412 7402 7400 7406 7410 7411
7402 5 7412 7403 7400 7401 7411
7403 6 7413 7414 7404 7400 7402 7412
7404 5 7403 7414 7415 7405 7400
7405 6 7404 7415 7407 7408 7406 7400
7406 7 7400 7405 7407 7408 7409 7410 7401
7407 4 7408 7406 7405 7415
7408 4 7409 7406 7405 7407
7409 3 7410 7406 7408
7410 4 7411 7401 7406 7409
7411 5 7416 7412 7402 7401 7410
7412 6 7416 7411 7401 7402 7403 7413
7413 3 7412 7403 7414
7414 3 7413 7403 7404
7415 3 7404 7405 7407
7416 2 7411 7412
5 7409 7408 7407 7405 7415
6 7415 7404 7414 7413 7412 7416

Sample Output

4 7400

参考:http://blog.csdn.net/acvay/article/details/40221819

题意:从给的公交线路(nr)找到一个中心,这个中心到每一个公交车站距离最优即(这个中心顾及到每个公交车站)。并求出这个中心到其中一个公交车站最远距离。

思路:对每一个公交车站进行BFS求出dis[i],i这个点到这些公交车站最远距离。

收获:1.了解了set:每个元素最多只出现一次,并且默认的是从小到大排序。

2.set<int>::iterator 从set中将编号取出来。

 #include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<set>
using namespace std;
#define maxn 10000
typedef set<int>::iterator it;
set<int>zone;
int link[maxn][];
int dis[maxn],tdis[maxn];
void bfs(int st)
{
queue<int>q;
memset(tdis,,sizeof(tdis));
tdis[st]=;
q.push(st);
while(!q.empty())
{
int cur=q.front();
q.pop();
if(tdis[cur]>dis[cur])
dis[cur]=tdis[cur];
for(int i=;i<=link[cur][];i++)
{
int temp=link[cur][i];
if(tdis[temp]==)
{
q.push(temp);
tdis[temp]=tdis[cur]+;
}
}
} }
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
zone.clear();
int nz,nr,mz,mr,num,id;
scanf("%d%d",&nz,&nr);
for(int i=;i<nz;i++)
{
scanf("%d%d",&id,&mz);
link[id][]=mz;
for(int j=;j<=mz;j++)
{
scanf("%d",&link[id][j]);
zone.insert(link[id][j]);
}
}
int pos;
memset(dis,,sizeof(tdis));
for(int i=;i<nr;i++)
{
scanf("%d",&mr);
for(int j=;j<mr;j++)
{
scanf("%d",&pos);
bfs(pos);
}
}
it i=zone.begin();
int ans= *i;
for(++i;i!=zone.end();++i)
if(dis[*i]<dis[ans])
ans=*i;
printf("%d %d\n",dis[ans],ans);
}
return ;
}

ZOJ2913Bus Pass(BFS+set)的更多相关文章

  1. ACM&sol;ICPC 之 BFS范例&lpar;ZOJ2913-ZOJ1136&lpar;POJ1465&rpar;&rpar;

    通过几道经典BFS例题阐述BFS思路 ZOJ2913-Bus Pass 题意:找一个center区域,使得center到所有公交线路最短,有等距的center则输出id最小的. 题解:经典的BFS,由 ...

  2. CQBZOJ 避开怪兽

    题目描述 给出一个N行M列的地图,地图形成一个有N*M个格子的矩阵.地图中的空地用'.'表示.其中某些格子有怪兽,用'+'表示.某人要从起点格子'V'走到终点格子'J',他可以向上.下.左.右四个方向 ...

  3. ZOJ 2913 Bus Pass &lpar;近期的最远BFS HDU2377&rpar;

    题意  在全部城市中找一个中心满足这个中心到全部公交网站距离的最大值最小 输出最小距离和满足最小距离编号最小的中心 最基础的BFS  对每一个公交网站BFS  dis[i]表示编号为i的点到全部公交网 ...

  4. (BFS)hdoj2377-Bus Pass

    题目地址 因为最后要看的是到所有路线上的区域最大距离最小的中心点,所以可以采取遍历路线上所有的区域,对每个区域进行BFS的办法.为了更方便的在每一次BFS都遍历所有的区域,可以加一个reach数组,记 ...

  5. 【BZOJ-1656】The Grove 树木 BFS &plus; 射线法

    1656: [Usaco2006 Jan] The Grove 树木 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 186  Solved: 118[Su ...

  6. hiho &num;1372&colon;平方求 &lpar;bfs&rpar;

    #1372 : 平方求和 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 对于一个非负整数n,最少需要几个完全平方数,使其和为n? 输入 输入包含多组数据.对于每组数据: ...

  7. POJ 2697 A Board Game(Trie判重&plus;BFS)

    A Board Game Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 551   Accepted: 373 Descri ...

  8. HDU 5025:Saving Tang Monk(BFS &plus; 状压)

    http://acm.hdu.edu.cn/showproblem.php?pid=5025 Saving Tang Monk Problem Description   <Journey to ...

  9. hdu 5025 Saving Tang Monk(bfs&plus;状态压缩)

    Description <Journey to the West>(also <Monkey>) is one of the Four Great Classical Nove ...

随机推荐

  1. HDU5086——Revenge of Segment Tree&lpar;BestCoder Round &num;16&rpar;

    Revenge of Segment Tree Problem DescriptionIn computer science, a segment tree is a tree data struct ...

  2. Koa2 源码解析&lpar;1&rpar;

    Koa2 源码解析 其实本来不想写这个系列文章的,因为Koa本身很精简,一共就4个文件,千十来行代码. 但是因为想写 egg[1] 的源码解析,而egg是基于Koa2的,所以就先写个Koa2的吧,用作 ...

  3. 推荐一款App运营工具:AYL爱盈利App榜单监控

    对包括开发者.产品运营.投资人在内的诸多移动互联网从业人员而言,国内Android应用市场和IOS应用市场的榜单变化数据时大家的必修功课之一:看看这段时间所关注的垂直领域里最火的是哪几款应用:看看竞争 ...

  4. java共享锁实现原理及CountDownLatch解析

    前言 前面介绍了ReentrantLock,又叫排他锁,本篇主要通过CountDownLatch的学习来了解java并发包中是如何实现共享锁的. CountDownLatch使用解说 CountDow ...

  5. MyEclipse WebSphere开发教程:安装和更新WebSphere 6&period;1&comma; JAX-WS&comma; EJB 3&period;0(一)

    你开学,我放价!MyEclipse线上狂欢继续!火热开启中>> [MyEclipse最新版下载] MyEclipse支持Java EE技术(如JAX-WS和EJB 3.0),它们以功能包的 ...

  6. 关于SQL 语句常用的一些查询收藏

    create database xuesheng go use xuesheng go /*学生表*/ create table Student ( S# ,) primary key, Sname ...

  7. Tinghua Data Mining 2

    数据预处理 https://www.bilibili.com/video/av23933161/?p=11 http://www.xuetangx.com/courses/course-v1:Tsin ...

  8. STM32 GPIO寄存器 IDR ODR BSRR BRR

    IDR是查看引脚电平状态用的寄存器,ODR是引脚电平输出的寄存器 下面内容的原文:http://m646208823.blog.163.com/blog/static/1669029532012931 ...

  9. 【Visual Studio】关于vs 打开网站时报错 配置iis express失败 无法访问IIS元数据库&period;&period;&period;

    关于vs 打开网站时报错 配置iis express失败 无法访问IIS元数据库... 我安装了vs2015,一开始创建项目,网站都没问题,有一次突然打开项目时报错,瞬间懵逼,我啥都没干啊!!! 网上 ...

  10. Error &colon; Program type already present&colon; android&period;support&period;design&period;widget&period;CoordinatorLayout&dollar;

    背景 因为公司一个app项目需要扩展,因为功能较多且较完整的流程与业务,而且和以前的业务关系不大,所以我整合到了 另外一个分包中(代号:newFunc,请注意是代号)进行依赖. 当我写完这部分业务开始 ...