hdu 2377 Bus Pass
Bus Pass
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 667 Accepted Submission(s): 271
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!
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.
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.
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
#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的更多相关文章
- Bus Pass
ZOJ Problem Set - 2913 Bus Pass Time Limit: 5 Seconds Memory Limit: 32768 KB You travel a lot b ...
- ZOJ 2913 Bus Pass (近期的最远BFS HDU2377)
题意 在全部城市中找一个中心满足这个中心到全部公交网站距离的最大值最小 输出最小距离和满足最小距离编号最小的中心 最基础的BFS 对每一个公交网站BFS dis[i]表示编号为i的点到全部公交网 ...
- hdu 5552 Bus Routes
hdu 5552 Bus Routes 考虑有环的图不方便,可以考虑无环连通图的数量,然后用连通图的数量减去就好了. 无环连通图的个数就是树的个数,又 prufer 序我们知道是 $ n^{n-2} ...
- HDU 3420 -- Bus Fair ACM
Bus Fair Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total S ...
- hdu 1690 Bus System(Dijkstra最短路)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1690 Bus System Time Limit: 2000/1000 MS (Java/Others ...
- hdu 1690 Bus System (有点恶心)
Problem Description Because of the huge population of China, public transportation is very important ...
- hdu 1690 Bus System (最短路径)
Bus System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total ...
- HDU 3420 Bus Fair [补]
今天玩魔灵玩多了,耽误了时间,回去宿舍又没电. /*********************************************/ Bus Fair Time Limit: 2000/10 ...
- HDU 1690 Bus System
题目大意:给出若干巴士不同价格的票的乘坐距离范围,现在有N个站点,有M次询问,查询任意两个站点的最小花费 解析:由于是多次查询不同站点的最小花费,所以用弗洛伊德求解 时间复杂度(O^3) 比较基础的弗 ...
随机推荐
- bzoj 2783: [JLOI2012]树【树上差分】
注意是等于s不是大于s dfs,用set或者map存这条链到root的点权和sum[u],更新答案的时候查一下有没有s-sum[u]即可 #include<iostream> #inclu ...
- 数字货币期货与现货JavaScript量化策略代码详解汇总
1.动态平衡策略 按照当前的 BTC 的价值,账户余额保留¥5000 现金和 0.1个 BTC,即现金和BTC 市值的初始比例是 1:1. 如果 BTC 的价格上涨至¥6000,即 BTC 市值大于账 ...
- 【优化算法】Greedy Randomized Adaptive Search算法 超详细解析,附代码实现TSP问题求解
01 概述 Greedy Randomized Adaptive Search,贪婪随机自适应搜索(GRAS),是组合优化问题中的多起点元启发式算法,在算法的每次迭代中,主要由两个阶段组成:构造(co ...
- ACM经历与感悟合集
ACM经历与感悟合集 ACM起步要点总结(转哈工大) ACM 荣耀之路-学习方法 ACM感悟 一位ACMer过来人的心得 ACM经历总结 大学ACM的总结 ACM大牛的退役贴 各大牛退役总结帖 女生应 ...
- git介绍及安装
git介绍 git是一个开源的分布式版本控制系统,用于敏捷高效的处理任何或大或小的项目.git是linus Torvalds为了帮助管理Linux内核开发的一个开放源码的版本控制软件. Git 与常用 ...
- ZooKeeper通过ACL修复未授权访问漏洞
默认情况下ZooKeeper允许匿名访问,因此在安全漏洞扫描中暴漏未授权访问漏洞. 一.参考资料 <ZooKeeper 笔记(5) ACL(Access Control List)访问控制列表& ...
- C++中的数学函数汇总
math.h 数学函数库,一些数学计算的公式的具体实现是放在math.h里,具体有: 1 三角函数 double sin (double); double cos (double); double t ...
- [转]Android项目快速开发框架探索(Mysql + OrmLite + Hessian + Sqlite)
前言 结合之前所用的ormlite和hessian,再加上SAE已经支持JAVA,把服务端切换到JAVA,也就有了本文.使用hessian来做数据传输,ormlite来实现客户端与服务端的数据存储,极 ...
- ftp 上传与下载
//上传 ftpmg.Upload("", DateTime.Now.ToString("yyyyMMddhhmmss")); //下载 ftpmg.Downl ...
- ajax跨域上传图片
前台页面 var data = new FormData(); data.append('file', file); data.append('app', 'goods'); $.ajax({ url ...