逃不掉的路 CH Round #24 - 三体杯 Round #1

题目描述

现代社会,路是必不可少的。任意两个城镇都有路相连,而且往往不止一条。但有些路连年被各种XXOO,走着很不爽。按理说条条大路通罗马,大不了绕行其他路呗——可小撸却发现:从a城到b城不管怎么走,总有一些逃不掉的必经之路

他想请你计算一下,a到b的所有路径中,有几条路是逃不掉的?

输入格式

第一行是n和m,用空格隔开。接下来m行,每行两个整数x和y,用空格隔开,表示x城和y城之间有一条长为1的双向路。第m+2行是q。接下来q行,每行两个整数a和b,用空格隔开,表示一次询问。

输出格式

对于每次询问,输出一个正整数,表示a城到b城必须经过几条路。

样例输入

5 5

1 2

1 3

2 4

3 4

4 5

2

1 4

2 5

样例输出

0

1

样例解释

第1次询问,1到4的路径有 1--2--4 ,还有 1--3--4 。没有逃不掉的道路,所以答案是0。

第2次询问,2到5的路径有 2--4--5 ,还有 2--1--3--4--5 。必须走“4--5”这条路,所以答案是1。

数据约定与范围

共10组数据,每组10分。

有3组数据,n ≤ 100 , n ≤ m ≤ 200 , q ≤ 100。

另有2组数据,n ≤ 103 , n ≤ m ≤ 2 x 103 , 100 < q ≤ 105

另有3组数据,103 < n ≤ 105 , m = n-1 , 100 < q ≤ 105

另有2组数据,103 < n ≤ 105 , n ≤ m ≤ 2 x 105 , 100 < q ≤ 105

对于全部的数据,1 ≤ x,y,a,b ≤ n;对于任意的道路,两端的城市编号之差不超过104

任意两个城镇都有路径相连;同一条道路不会出现两次;道路的起终点不会相同;查询的两个城市不会相同。

题解

要求无向图的必经边,较为简单的做法是找出边双缩点,然后转化成树上距离问题。

#include<bits/stdc++.h>
#define rg register
#define il inline
#define co const
template<class T>il T read(){
rg T data=0,w=1;rg char ch=getchar();
for(;!isdigit(ch);ch=getchar())if(ch=='-') w=-w;
for(;isdigit(ch);ch=getchar()) data=data*10+ch-'0';
return data*w;
}
template<class T>il T read(rg T&x) {return x=read<T>();}
typedef long long ll;
using namespace std; co int N=2e5+1;
int n,m;
int head[N],ver[N*2],next[N*2],tot=1;
int dfn[N],low[N],c[N],num,dcc;
bool bridge[N*2];
int hc[N],vc[N*2],nc[N*2],tc=1;
int d[N],f[N][18];
queue<int> q; il void add(int x,int y){
ver[++tot]=y,::next[tot]=head[x],head[x]=tot;
}
il void add_c(int x,int y){
vc[++tc]=y,nc[tc]=hc[x],hc[x]=tc;
}
void tarjan(int x,int in_edge){
dfn[x]=low[x]=++num;
for(int i=head[x];i;i=::next[i]){
int y=ver[i];
if(!dfn[y]){
tarjan(y,i);
low[x]=min(low[x],low[y]);
if(low[y]>dfn[x]) bridge[i]=bridge[i^1]=1;
}
else if(i!=(in_edge^1)) low[x]=min(low[x],dfn[y]);
}
}
void dfs(int x){ // dye
c[x]=dcc;
for(int i=head[x];i;i=::next[i]){
int y=ver[i];
if(c[y]||bridge[i]) continue;
dfs(y);
}
}
void bfs(){ }
int lca(int x,int y){
if(d[x]<d[y]) swap(x,y);
for(int i=17;i>=0;--i)
if(d[f[x][i]]>=d[y]) x=f[x][i];
if(x==y) return x;
for(int i=17;i>=0;--i)
if(f[x][i]!=f[y][i]) x=f[x][i],y=f[y][i];
return f[x][0];
}
int main(){
read(n),read(m);
for(int x,y;m--;){
read(x),read(y);
add(x,y),add(y,x);
}
// 缩点建图
for(int i=1;i<=n;++i)
if(!dfn[i]) tarjan(i,0);
for(int i=1;i<=n;++i)
if(!c[i]) ++dcc,dfs(i);
for(int i=2;i<=tot;++i){
int x=ver[i^1],y=ver[i];
if(c[x]!=c[y]) add_c(c[x],c[y]);
}
// 倍增lca预处理
d[1]=1,q.push(1);
while(q.size()){
int x=q.front();q.pop();
for(int i=hc[x];i;i=nc[i]){
int y=vc[i];
if(d[y]) continue;
d[y]=d[x]+1,f[y][0]=x;
for(int j=1;j<18;++j) f[y][j]=f[f[y][j-1]][j-1];
q.push(y);
}
}
// 处理询问
read(m);
for(int x,y;m--;){
x=c[read<int>()],y=c[read<int>()];
printf("%d\n",d[x]+d[y]-2*d[lca(x,y)]);
}
return 0;
}

Traffic Real Time Query System

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3808    Accepted Submission(s): 759


Problem Description
City C is really a nightmare of all drivers for its traffic jams. To solve the traffic problem, the mayor plans to build a RTQS (Real Time Query System) to monitor all traffic situations. City C is made up of N crossings and M roads, and each road connects two crossings. All roads are bidirectional. One of the important tasks of RTQS is to answer some queries about route-choice problem. Specifically, the task is to find the crossings which a driver MUST pass when he is driving from one given road to another given road.
 

Input
There are multiple test cases.
For each test case:
The first line contains two integers N and M, representing the number of the crossings and roads.
The next M lines describe the roads. In those M lines, the ith line (i starts from 1)contains two integers Xi and Yi, representing that roadi connects crossing Xi and Yi (Xi≠Yi).
The following line contains a single integer Q, representing the number of RTQs.
Then Q lines follows, each describing a RTQ by two integers S and T(S≠T) meaning that a driver is now driving on the roads and he wants to reach roadt . It will be always at least one way from roads to roadt.
The input ends with a line of “0 0”.
Please note that: 0<N<=10000, 0<M<=100000, 0<Q<=10000, 0<Xi,Yi<=N, 0<S,T<=M
 

Output
For each RTQ prints a line containing a single integer representing the number of crossings which the driver MUST pass.
 

Sample Input
5 6
1 2
1 3
2 3
3 4
4 5
3 5
2
2 3
2 4
0 0
 

Sample Output
0
1
 

Source
 

Recommend
lcy&zhengfeng   |   We have carefully selected several similar problems for you:  3689 3682 3683 3681 3687 
 

给你一个无向图,询问边a和边b,问从边a到边b的路径中几个点是必须要经过的。

题解

求无向图的必经点,跟上题类似,求出点双后缩点,然后转化成查询路径上割点的个数。由于点双缩点的特殊性,所以算距离的时候写的不一样。

#include<iostream>
#include<cstring>
#include<queue>
#define rg register
#define il inline
#define co const
template<class T>il T read(){
rg T data=0,w=1;rg char ch=getchar();
for(;!isdigit(ch);ch=getchar())if(ch=='-') w=-w;
for(;isdigit(ch);ch=getchar()) data=data*10+ch-'0';
return data*w;
}
template<class T>il T read(rg T&x) {return x=read<T>();}
typedef long long ll;
using namespace std; co int N=2e4+1,M=2e5+2;
int n,m,t;
int head[N],ver[M],next[M],tot;
int dfn[N],low[N],stack[N],new_id[N],c[N],belong[M],num,root,top,cnt;
int d[N],dist[N],f[N][16];
bool cut[N];
vector<int> dcc[N];
int hc[N],vc[M],nc[M],tc;
queue<int> q; il void add(int x,int y){
ver[++tot]=y,::next[tot]=head[x],head[x]=tot;
}
il void add_c(int x,int y){
vc[++tc]=y,nc[tc]=hc[x],hc[x]=tc;
}
void tarjan(int x){
dfn[x]=low[x]=++num;
stack[++top]=x;
if(x==root&&head[x]==0){
dcc[++cnt].push_back(x);
return;
}
int flag=0;
for(int i=head[x];i;i=::next[i]){
int y=ver[i];
if(!dfn[y]){
tarjan(y);
low[x]=min(low[x],low[y]);
if(low[y]>=dfn[x]){
++flag;
if(x!=root||flag>1) cut[x]=1;
++cnt;
int z;
do{
z=stack[top--];
dcc[cnt].push_back(z);
}while(z!=y);
dcc[cnt].push_back(x);
}
}
else low[x]=min(low[x],dfn[y]);
}
}
void bfs(int s){
d[s]=1,dist[s]=s>cnt,q.push(s);
for(int i=0;i<16;++i) f[s][i]=0;
while(q.size()){
int x=q.front();q.pop();
for(int i=hc[x];i;i=nc[i]){
int y=vc[i];
if(d[y]) continue;
d[y]=d[x]+1,dist[y]=dist[x]+(y>cnt),f[y][0]=x;
for(int j=1;j<16;++j) f[y][j]=f[f[y][j-1]][j-1];
q.push(y);
}
}
}
int lca(int x,int y){
if(d[x]<d[y]) swap(x,y);
for(int i=15;i>=0;--i)
if(d[f[x][i]]>=d[y]) x=f[x][i];
if(x==y) return x;
for(int i=15;i>=0;--i)
if(f[x][i]!=f[y][i]) x=f[x][i],y=f[y][i];
return f[x][0];
}
int main(){
while(read(n)|read(m)){
memset(head,0,sizeof head);
memset(hc,0,sizeof hc);
memset(dfn,0,sizeof dfn);
memset(d,0,sizeof d);
memset(cut,0,sizeof cut);
memset(c,0,sizeof c);
for(int i=1;i<=n;++i) dcc[i].clear();
tot=1,num=cnt=top=0;
for(int x,y;m--;){
read(x),read(y);
add(x,y),add(y,x);
}
for(int i=1;i<=n;++i)
if(!dfn[i]) root=i,tarjan(i);
num=cnt;
for(int i=1;i<=n;++i)
if(cut[i]) new_id[i]=++num;
tc=1;
for(int i=1;i<=cnt;++i){
for(int j=0;j<dcc[i].size();++j){
int x=dcc[i][j];
if(cut[x]) add_c(i,new_id[x]),add_c(new_id[x],i);
c[x]=i;
}
for(int j=0;j<dcc[i].size()-1;++j){
int x=dcc[i][j];
for(int k=head[x];k;k=::next[k]){
int y=ver[k];
if(c[y]==i) belong[k/2]=i; // 输入的第k/2条边(x,y)处于第i个v-DCC内
}
}
}
// 编号 1~cnt 的为原图的v-DCC,编号 cnt+1~num 的为原图割点
for(int i=1;i<=num;++i)
if(!d[i]) bfs(i);
read(t);
while(t--){
int es=read<int>(),et=read<int>();
int x=belong[es],y=belong[et],z=lca(x,y);
printf("%d\n",dist[x]+dist[y]-2*dist[z]+(z>cnt));
}
}
return 0;
}

CH#24C 逃不掉的路 和 HDU3686 Traffic Real Time Query System的更多相关文章

  1. ContestHunter#24-C 逃不掉的路

    Description: 求无向图的必经边 思路:一眼题 将无向图缩成树,然后求两点树上距离 #include<iostream> #include<vector> #incl ...

  2. CH Round #24 - 三体杯 Round #1-C 逃不掉的路

    留个e-DCC的板子 #include<cstdio> #include<iostream> #include<cstring> #include<cstdl ...

  3. CH24C 逃不掉的路

    edcc缩点之后跳倍增lca 丢个edcc缩点模板 Code: #include <cstdio> #include <cstring> using namespace std ...

  4. 高并发第九弹:逃不掉的Map --> HashMap,TreeMap,ConcurrentHashMap

    平时大家都会经常使用到 Map,面试的时候又经常会遇到问Map的,其中主要就是 ConcurrentHashMap,在说ConcurrentHashMap.我们还是先看一下, 其他两个基础的 Map ...

  5. 逃不掉的mysql数据库安装方式大全yum rpm 源码

    数据库虽然也不是天天安装,但每次安装都要找来找去挺烦,特整理记录在此. 系统基于:Centos 7.x 数据库版本: MySQL 5.7.x 转载请注明出处 Yum 安装方式 1.下载 yum rep ...

  6. Spring Cloud实战 | 第十篇 :Spring Cloud + Seata 1.4.1 + Nacos1.4.0 整合实现微服务架构中逃不掉的话题分布式事务

    Seata分布式事务在线体验地址:https://www.youlai.store 本篇完整源码地址:https://github.com/hxrui/youlai-mall 有想加入开源项目开发的童 ...

  7. D8 双连通分量

    记得有个梗那一天,zw学生zzh大佬说逃不掉的路变成a不掉的题哈哈哈哈: 分离的路径: BZOJ 1718POJ 3177LUOGU 286: 思路:在同一个边双连通分量中,任意两点都有至少两条独立路 ...

  8. 『Tarjan算法 无向图的双联通分量』

    无向图的双连通分量 定义:若一张无向连通图不存在割点,则称它为"点双连通图".若一张无向连通图不存在割边,则称它为"边双连通图". 无向图图的极大点双连通子图被 ...

  9. 边的双联通+缩点+LCA(HDU3686)

    Traffic Real Time Query System Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K ...

随机推荐

  1. Cow Contest(传递闭包)

    Cow Contest Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10450   Accepted: 5841 Desc ...

  2. [转]Html position(static、relative、absolute、fixed)

    转自:http://blog.csdn.net/topviewers/article/details/21644305 讲解不错,转载备忘. position的四个属性值: 1.relative2.a ...

  3. 九度OJ 1355:扑克牌顺子 (模拟)

    时间限制:2 秒 内存限制:32 兆 特殊判题:否 提交:1676 解决:484 题目描述: LL今天心情特别好,因为他去买了一副扑克牌,发现里面居然有2个大王,2个小王(一副牌原本是54张^_^). ...

  4. 【python】-- Socket

    socket socket本质上就是在2台网络互通的电脑之间,架设一个通道,两台电脑通过这个通道来实现数据的互相传递. 我们知道网络 通信 都 是基于 ip+port 方能定位到目标的具体机器上的具体 ...

  5. 如何更改CSDN博客高亮代码皮肤的样式,使博客看起来更有范(推荐)

    由于本人写博客的时候,也没有配置博客的相关属性,因此贴出来的代码块都是CSDN默认的,因此代码背景色都是白色的,如下所示: 但是本人在浏览他人博客的时候,发现有些博客的代码块看起来比较有范,整个代码库 ...

  6. centos安装 Falcon+

    1:环境 准备 : 安装 go环境 :下载 - Golang中国 参照 :http://www.cnblogs.com/Amos-Turing/p/8494250.html 安装 mysql 安装 r ...

  7. CONVERT_DATE_INPUT

    [转自http://www.cnblogs.com/VerySky/articles/2226862.html] 通过 Function Module 将外部日期转换为内部日期所属 Function ...

  8. 关于ionic开发中遇到的坑与总结

    这次是第二次使用ionic开发混合app,今天算是对这个框架做一个总结,基础的我就不再重复了,网上都有教程.我就说说自己的心得和遇见的各种坑, 之后会陆续补充,想到什么说什么吧. 1.关于ionic效 ...

  9. python基础15 ---面像对象的程序设计

    面向对象的程序设计 一.面向对象的程序设计简介 1.面向对象程序设计的由来. 我们之前虽然学习过了面向过程的程序,它的核心是面向过程,一步一步的设计好了的流程,虽然极大的降低了程序的复杂度,但是一个设 ...

  10. ubuntu14.04下svn版本管理系统的安装及常用命令的使用整理

    ubuntu14.04下安装svn$sudo apt-get install subversion 执行这一步就安装完成了,在ubuntu先安装很方便 安装完成后,创建版本库目录,由于是本地环境,就在 ...