CODE FESTIVAL 2017 qual B C - 3 Steps
Posted 友人A
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CODE FESTIVAL 2017 qual B C - 3 Steps相关的知识,希望对你有一定的参考价值。
Score : 500 points
Problem Statement
Rng has a connected undirected graph with N vertices. Currently, there are M edges in the graph, and the i-th edge connects Vertices Ai and Bi.
Rng will add new edges to the graph by repeating the following operation:
- Operation: Choose u and v (u≠v) such that Vertex v can be reached by traversing exactly three edges from Vertex u, and add an edge connecting Vertices uand v. It is not allowed to add an edge if there is already an edge connecting Vertices u and v.
Find the maximum possible number of edges that can be added.
Constraints
- 2≤N≤105
- 1≤M≤105
- 1≤Ai,Bi≤N
- The graph has no self-loops or multiple edges.
- The graph is connected.
Input
Input is given from Standard Input in the following format:
N M
A1 B1
A2 B2
:
AM BM
Output
Find the maximum possible number of edges that can be added.
Sample Input 1
6 5
1 2
2 3
3 4
4 5
5 6
Sample Output 1
4
If we add edges as shown below, four edges can be added, and no more.
Sample Input 2
5 5
1 2
2 3
3 1
5 4
5 1
Sample Output 2
5
Five edges can be added, for example, as follows:
- Add an edge connecting Vertex 5 and Vertex 3.
- Add an edge connecting Vertex 5 and Vertex 2.
- Add an edge connecting Vertex 4 and Vertex 1.
- Add an edge connecting Vertex 4 and Vertex 2.
- Add an edge connecting Vertex 4 and Vertex 3.
这道题我们的做法是二分图染色 如果原图是个二分图 那么同色距离为偶 所以答案就是 黑*白-m
如果不是 那么我们发现 图上存在环且为奇环 那么环上任意一对点都可以连边
这样可以不断拓出来使得整个图每对点都可以连边 这样答案就是n*(n-1)/2-m辣
#include<cstdio> #include<cstring> #include<algorithm> int read(){ int ans=0,f=1,c=getchar(); while(c<‘0‘||c>‘9‘){if(c==‘-‘) f=-1; c=getchar();} while(c>=‘0‘&&c<=‘9‘){ans=ans*10+(c-‘0‘); c=getchar();} return ans*f; } const int M=2e5+7; int n,m,s[2],color[M],vis[M]; int first[M],cnt; struct node{int to,next;}e[2*M]; void ins(int a,int b){e[++cnt]=(node){b,first[a]}; first[a]=cnt;} void insert(int a,int b){ins(a,b); ins(b,a);} bool ly=false; void dfs(int x){ vis[x]=1; s[color[x]]++; for(int i=first[x];i;i=e[i].next){ int now=e[i].to; if(!vis[now]) color[now]=1-color[x],dfs(now); if(vis[now]&&color[now]==color[x]){ly=true; return ;} } } int main(){ int x,y; n=read(); m=read(); for(int i=1;i<=m;i++) x=read(),y=read(),insert(x,y); dfs(1); if(ly) printf("%lld\n",1LL*n*(n-1)/2-m); else printf("%lld\n",1LL*s[0]*s[1]-m); return 0; }
以上是关于CODE FESTIVAL 2017 qual B C - 3 Steps的主要内容,如果未能解决你的问题,请参考以下文章
CODE FESTIVAL 2017 qual B 解题报告
101 to 010 Atcoder CODE FESTIVAL 2017 qual B D
CODE FESTIVAL 2017 qual B B - Problem Set水体,stl map
[Atcoder Code Festival 2017 Qual B Problem F]Largest Smallest Cyclic Shift