Bus Pass

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 667    Accepted Submission(s): 271

Problem Description
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:

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
 
#include <iostream>
#include <stack>
#include <cstring>
#include <cstdio>
#include <string>
#include <algorithm>
#include <queue>
using namespace std;
/*
要求出某个点到所有公交站点的距离最大的最小;
那么就可以先求出每个公交站点到所有点的距离中,相应的每个点到公交站点的距离取最大,在所有点距离去最小即可。
*/
#define ms(arr, val) memset(arr, val, sizeof(arr))
#define N 10000
#define INF 0x3fffffff
struct node
{
int seq;
int lay;
};
int id[N][];
int idtag[N];
int idmax[N];
int iddis[N];
queue<int> q; void bfs(int p)//求bfs求单元最短路,因为相邻两点距离为1.
{
ms(iddis, );
ms(idtag, );
q.push(p);
idtag[p] = iddis[p] = ;
while (!q.empty())
{
int s = q.front();
q.pop();
int i = ;
while (id[s][i])
{
if (!idtag[id[s][i]])
{
iddis[id[s][i]] = iddis[s] + ;
idtag[id[s][i]] = ;
q.push(id[s][i]);
}
i++;
}
}
}
int main()
{
int t, nz, nr, mzn, idp, mrn, tt, ans, pos;
cin >> t;
while (t--)
{
ms(id, );
ms(idmax, );
cin >> nz >> nr;
for (int i = ; i < nz; i++)
{
cin >> idp >> mzn;
for (int j = ; j < mzn; j++)
{
cin >> id[idp][j];
}
} for (int i = ; i < nr; i++)
{
cin >> mrn;
for (int j = ; j < mrn; j++)
{
cin >> tt;
bfs(tt);
for (int i = ; i < N; i++)
{
idmax[i] = max(idmax[i], iddis[i]);
}
}
}
pos = ;
ans = INF;
for (int i = ; i < N; i++)
{
if (idmax[i] > && ans > idmax[i])
{
pos = i;
ans = idmax[i];
}
}
cout << ans <<' '<<pos<< endl;
}
return ;
}
 

hdu 2377 Bus Pass的更多相关文章

  1. Bus Pass

    ZOJ Problem Set - 2913 Bus Pass Time Limit: 5 Seconds      Memory Limit: 32768 KB You travel a lot b ...

  2. ZOJ 2913 Bus Pass (近期的最远BFS HDU2377)

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

  3. hdu 5552 Bus Routes

    hdu 5552 Bus Routes 考虑有环的图不方便,可以考虑无环连通图的数量,然后用连通图的数量减去就好了. 无环连通图的个数就是树的个数,又 prufer 序我们知道是 $ n^{n-2} ...

  4. HDU 3420 -- Bus Fair ACM

    Bus Fair Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total S ...

  5. hdu 1690 Bus System(Dijkstra最短路)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1690 Bus System Time Limit: 2000/1000 MS (Java/Others ...

  6. hdu 1690 Bus System (有点恶心)

    Problem Description Because of the huge population of China, public transportation is very important ...

  7. hdu 1690 Bus System (最短路径)

    Bus System Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  8. HDU 3420 Bus Fair [补]

    今天玩魔灵玩多了,耽误了时间,回去宿舍又没电. /*********************************************/ Bus Fair Time Limit: 2000/10 ...

  9. HDU 1690 Bus System

    题目大意:给出若干巴士不同价格的票的乘坐距离范围,现在有N个站点,有M次询问,查询任意两个站点的最小花费 解析:由于是多次查询不同站点的最小花费,所以用弗洛伊德求解 时间复杂度(O^3) 比较基础的弗 ...

随机推荐

  1. 倒排索引构建算法BSBI和SPIMI

    参考:https://blog.csdn.net/androidlushangderen/article/details/44889677 倒排索引 : 一般的索引检索信息的方式.比如原始的数据源假设 ...

  2. vue按需加载组件,异步组件

    说实话,我一开始也不知道什么叫按需加载组件,组件还可以按需加载???后来知道了 学不完啊...没关系,看我的 按需加载组件,或者异步组件,主要是应用了component的 is 属性 template ...

  3. apicloud踩坑集锦

    最近在用apicloud开发,这里录入一些踩坑的地方,从头到尾,要多尴尬有多尴尬,新入app开发,记录一些心得,和遇到的坑以及解决办法. 1,apicloud 打包的Android app ,打开fr ...

  4. phpstudy 集成的mysql 无法启动

    问题产生: 安装好phpstudy后,Apache可以启动,Mysql无法启动.  解决方法: 之前已经装过Mysql,要把系统服务里面的MySQL删除,留下MySQLa服务. 在cmd命令行下输入: ...

  5. [ZOJ1961]Let it Bead

    Description "Let it Bead" company is located upstairs at 700 Cannery Row in Monterey, CA. ...

  6. composer 加快更新速度

    一.使用代理 set http_proxy=http://127.0.0.1:8087 //Windows export http_proxy=http://127.0.0.1:8087 //linu ...

  7. 【先定一个小目标】Postgresql允许远程访问配置修改

    1.解决不能连接远程postgresql: postgresql默认情况下,远程访问不能成功,如果需要允许远程访问,需要修改两个配置文件,说明如下: 1.postgresql.conf 将该文件中的l ...

  8. D. Mahmoud and a Dictionary 种类并查集

    http://codeforces.com/contest/766/problem/D 所谓种类并查集,题型一般如下:给定一些基本信息给你,然后又给出一些信息,要求你判断是真是假.例如给出a和b支持不 ...

  9. XDocument

    XDocument学习(Winform) using System; using System.Collections.Generic; using System.ComponentModel; us ...

  10. C# 代码笔记_tuple元组

    tuple元组: 赋值 List<Tuple<string, int>> cc = new List<Tuple<string, int>>() { n ...