Andrewid the Android is a galaxy-known detective. Now he is preparing a defense against a possible attack by hackers on a major computer network.

In this network are n vertices, some pairs of vertices are connected by m undirected channels. It is planned to transfer q important messages via this network, the i-th of which must be sent from vertex si to vertex di via one or more channels, perhaps through some intermediate vertices.

To protect against attacks a special algorithm was developed. Unfortunately it can be applied only to the network containing directed channels. Therefore, as new channels can't be created, it was decided for each of the existing undirected channels to enable them to transmit data only in one of the two directions.

Your task is to determine whether it is possible so to choose the direction for each channel so that each of the q messages could be successfully transmitted.

  人生中第一道div 1 E题,值得纪念一下。

  题目就是给一个无向图,然后给每条边一个方向,问能不能满足Q个条件,每个条件就是能不能从ai到bi。

  其实不难的题目,然而没有想到双连通卡了一段时间。

  双连通的子图一定能够构造出使其满足任意两点都能互相到,所以先把原图缩点成树。

  树的话方法是对于每个条件 a->b,c=lca(a,b),然后给a-c线段的端点复制+1 -1, c-b同样,但是是维护的另一个数组。

  这样如果对于一个点维护的两个值都为正,说明不可能,否则可以。

  但是注意图可能不连通,12组数据就是这样的,被坑了一次。

代码比较乱,如下:

// ━━━━━━神兽出没━━━━━━
// ┏┓ ┏┓
// ┏┛┻━━━━━━━┛┻┓
// ┃ ┃
// ┃ ━ ┃
// ████━████ ┃
// ┃ ┃
// ┃ ┻ ┃
// ┃ ┃
// ┗━┓ ┏━┛
// ┃ ┃
// ┃ ┃
// ┃ ┗━━━┓
// ┃ ┣┓
// ┃ ┏┛
// ┗┓┓┏━━━━━┳┓┏┛
// ┃┫┫ ┃┫┫
// ┗┻┛ ┗┻┛
//
// ━━━━━━感觉萌萌哒━━━━━━ // Author : WhyWhy
// Created Time : 2015年10月11日 星期日 22时40分22秒
// File Name : B.cpp #include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h> using namespace std; const int MaxN=;
const int MaxM=MaxN<<; ////////////////////////////////////////////////////// namespace TU
{ struct Edge
{
int u;
int to,next;
}; Edge E[MaxM];
int head[MaxN],Ecou;
int LOW[MaxN],DFN[MaxN];
int couBridge;
bool bridge[MaxM],cutp[MaxN];
int add_block[MaxN]; // The number of bolcks that is added by deleting a point.(not the number of blocks of this new graph!!!)
int Index; struct newEdge
{
int u,v,num; newEdge(int _u=,int _v=,int _num=):u(_u),v(_v),num(_num) {}; bool operator < (const newEdge &a) const
{
if(u==a.u)
return v<a.v; return u<a.u;
} bool operator == (const newEdge &a) const
{
return u==a.u && v==a.v;
}
}; bool chongE[MaxM]; // Parallel edge.
newEdge remE[MaxM]; void Tarjan(int u,int pre)
{
int v;
int couSon=; LOW[u]=DFN[u]=++Index; for(int i=head[u];i!=-;i=E[i].next)
{
v=E[i].to; if(v==pre) // !!!
continue; if(!DFN[v])
{
++couSon;
Tarjan(v,u); if(LOW[v]<LOW[u])
LOW[u]=LOW[v]; if(DFN[u]<LOW[v] && !chongE[i])
{
bridge[i]=;
bridge[i^]=; //
++couBridge;
}
if(u!=pre && DFN[u]<=LOW[v])
{
cutp[u]=;
++add_block[u];
}
}
else if(DFN[v]<LOW[u])
LOW[u]=DFN[v];
} if(u==pre && couSon>)
{
cutp[u]=;
add_block[u]=couSon-;
}
} void getCUTP(int n)
{
sort(remE,remE+Ecou); for(int i=;i<Ecou;++i)
if(remE[i]==remE[i-])
chongE[remE[i].num]=chongE[remE[i-].num]=; for(int i=;i<=n;++i)
if(!DFN[i])
Tarjan(i,i);
} void addEdge(int u,int v)
{
E[Ecou].u=u;
E[Ecou].to=v;
E[Ecou].next=head[u];
bridge[Ecou]=; chongE[Ecou]=;
remE[Ecou]=newEdge(u,v,Ecou); head[u]=Ecou++;
} void init(int n)
{
Ecou=couBridge=Index=; for(int i=;i<=n;++i)
{
head[i]=-;
cutp[i]=DFN[i]=add_block[i]=;
}
} }; ////////////////////////////////// int belong[MaxN];
int vis[MaxN];
int N;
int TN;
int Q; namespace TREE
{ const int LOG=; struct Edge
{
int next,to;
}; Edge E[MaxN*];
int head[MaxN],Ecou; int dep[MaxN];
int par[MaxN][LOG]; void init()
{
memset(head,-,sizeof(head));
Ecou=;
} void addEdge(int u,int v)
{
E[Ecou].next=head[u];
E[Ecou].to=v;
head[u]=Ecou++;
} int que[MaxN];
int first,last; void BFS(int root,int VI)
{
int t,v; first=last=;
dep[root]=;
par[root][]=root;
que[last++]=root; vis[root]=VI; while(last-first)
{
t=que[first++]; for(int i=;i<LOG;++i)
par[t][i]=par[par[t][i-]][i-]; for(int i=head[t];i!=-;i=E[i].next)
{
v=E[i].to; if(v==par[t][])
continue; dep[v]=dep[t]+;
par[v][]=t;
que[last++]=v; vis[v]=VI;
}
}
} int query(int u,int v)
{
if(dep[u]<dep[v])
swap(u,v); for(int det=dep[u]-dep[v],i=;det;det>>=,++i)
if(det&)
u=par[u][i]; if(u==v)
return u; for(int i=LOG-;i>=;--i)
if(par[u][i]!=par[v][i])
{
u=par[u][i];
v=par[v][i];
} return par[u][];
} // ------------- int rem1[MaxN],rem2[MaxN];
int sum1[MaxN],sum2[MaxN];
bool tvis[MaxN]; bool dfs111(int u,int pre)
{
tvis[u]=; sum1[u]=rem1[u];
sum2[u]=rem2[u]; for(int i=head[u];i!=-;i=E[i].next)
if(E[i].to!=pre)
{
if(dfs111(E[i].to,u)==) return ;
sum1[u]+=sum1[E[i].to];
sum2[u]+=sum2[E[i].to];
} if(sum1[u]> && sum2[u]> && pre!=-) return ;
return ;
} bool judge()
{
int a,b;
int c;
int VI=; for(int i=;i<=N;++i)
if(!vis[i])
BFS(i,++VI); while(Q--)
{
scanf("%d %d",&a,&b);
a=belong[a];
b=belong[b]; if(vis[a]!=vis[b]) return ; if(a!=b)
{
c=query(a,b);
++rem1[a];
--rem1[c];
++rem2[b];
--rem2[c];
}
} for(int i=;i<=N;++i)
if(tvis[i]==)
if(!dfs111(i,-))
return ;
return ;
} }; /////////////////////////////////////// int que[MaxN];
int first,last; void bfs(int u,int be)
{
first=last=;
que[last++]=u;
belong[u]=be; while(last-first)
{
u=que[first++];
for(int i=TU::head[u];i!=-;i=TU::E[i].next)
if(TU::bridge[i]== && belong[TU::E[i].to]==)
{
belong[TU::E[i].to]=be;
que[last++]=TU::E[i].to;
}
}
} void getbelong()
{
N=;
for(int i=;i<=TN;++i)
if(!belong[i])
bfs(i,++N);
} void addEdge()
{
for(int i=;i<TU::Ecou;++i)
if(TU::bridge[i])
TREE::addEdge(belong[TU::E[i].u],belong[TU::E[i].to]);
} int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout); int M;
int a,b; scanf("%d %d %d",&TN,&M,&Q); TU::init(TN);
while(M--)
{
scanf("%d %d",&a,&b);
TU::addEdge(a,b);
TU::addEdge(b,a);
}
TU::getCUTP(TN); getbelong(); TREE::init();
addEdge(); if(TREE::judge()) puts("Yes");
else puts("No"); return ;
}

(中等) CF 555E Case of Computer Network,双连通+树。的更多相关文章

  1. [Codeforces 555E]Case of Computer Network(Tarjan求边-双连通分量+树上差分)

    [Codeforces 555E]Case of Computer Network(Tarjan求边-双连通分量+树上差分) 题面 给出一个无向图,以及q条有向路径.问是否存在一种给边定向的方案,使得 ...

  2. 555E Case of Computer Network

    分析 一个连通块内的肯定不影响 于是我们先缩点 之后对于每个路径 向上向下分别开一个差分数组 如果两个数组同时有值则不合法 代码 #include<bits/stdc++.h> using ...

  3. 「CF555E」 Case of Computer Network

    「CF555E」 Case of Computer Network 传送门 又是给边定向的题目(马上想到欧拉回路) 然而这个题没有对度数的限制,你想歪了. 然后又开始想一个类似于匈牙利的算法:我先跑, ...

  4. HDU 2460 Network(双连通+树链剖分+线段树)

    HDU 2460 Network 题目链接 题意:给定一个无向图,问每次增加一条边,问个图中还剩多少桥 思路:先双连通缩点,然后形成一棵树,每次增加一条边,相当于询问这两点路径上有多少条边,这个用树链 ...

  5. Solution -「CF 555E」Case of Computer Network

    \(\mathcal{Description}\)   Link.   给定 \(n\) 个点 \(m\) 条边的无向图,判断是否有给每条边定向的方案,使得 \(q\) 组有序点对 \((s,t)\) ...

  6. CF555E Case of Computer Network

    题面:https://www.luogu.com.cn/problem/CF555E 题意:给定一张\(n\)个点\(m\)条边的无向图. 给定\(q\)组有向点对\((s,t)\). 询问是否存在使 ...

  7. 题解 CF555E Case of Computer Network

    题目传送门 题目大意 给出一个\(n\)个点\(m\)条边的无向图,有\(q\)次有向点对\((s,t)\),问是否存在一种方法定向每条边使得每个点对可以\(s\to t\). \(n,m,q\le ...

  8. [J]computer network tarjan边双联通分量+树的直径

    https://odzkskevi.qnssl.com/b660f16d70db1969261cd8b11235ec99?v=1537580031 [2012-2013 ACM Central Reg ...

  9. codeforces GYM 100114 J. Computer Network 无相图缩点+树的直径

    题目链接: http://codeforces.com/gym/100114 Description The computer network of “Plunder & Flee Inc.” ...

随机推荐

  1. zTree异步加载并初始化树时全部展开(贴主要代码)

    <%@page pageEncoding="UTF-8"%> <%@include file="/commons/include/html_doctyp ...

  2. CodeForces 566B Replicating Processes

    #include <bits/stdc++.h> #define N 3010 #define LL long long #define unsigned U using namespac ...

  3. aX+bY+cZ=n(非负整数解存在性)

    题意: a*1234567+b*123456+c*1234=n 非负整数解得存在性. 题解: 看代码. #include<iostream> #include<cstdio> ...

  4. MongoDB和Redis区别

    简介 MongoDB更类似Mysql,支持字段索引.游标操作,其优势在于查询功能比较强大,擅长查询JSON数据,能存储海量数据,但是不支持事务. Mysql在大数据量时效率显著下降,MongoDB更多 ...

  5. win8.1点击“更改电脑设置”无反应(闪退)

    系统:win8.1 专业版 症状:win键+C → 设置 → 更改电脑设置,无反应. 尝试办法: 1.SFC /scannow扫描修复,扫描出错误但无法修复.因为曾经为了节省空间,用DISM++清理了 ...

  6. javascript语句语义大全(4)

    1. var arr1=new Array(2) var arr2=new Array() var arr3=new Array("a","b") var ar ...

  7. 转:Selenium Grid+JAVA +Windows 配置(Selenium 2.0)

    Selenium-Grid 允许你在多台机器的多个浏览器上并行的进行测试,也就是说,你可以同时运行多个测试.本质上来说就是,Selenium-Grid 支持分布式的测试执行.它可以让你的测试在一个分布 ...

  8. POJ 2289 Jamie's Contact Groups

    二分答案+网络最大流 #include<cstdio> #include<cstring> #include<cmath> #include<vector&g ...

  9. Chrome 43+浏览器 Cookies encrypted_value解密脚本

    python 3.3.5 # -*- coding: utf-8 -*- # Used information from: # http://stackoverflow.com/questions/4 ...

  10. jq的事件冒泡

    在页面上可以有多个事件,也可以多个元素响应同一件事, 事件冒泡引发的问题: 有些时候不想动用的事件,却因为事件冒泡而触发 解决问题: 1.事件对象 由于IE-DOM和标准的DOM实现事件对象的方法各不 ...