码迷,mamicode.com
首页 > 其他好文 > 详细

CODE FESTIVAL 2017 qual B C - 3 Steps

时间:2017-10-09 09:48:37      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:none   read   ros   二分图染色   oss   exactly   already   find   ble   

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 (uv) 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,BiN
  • 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

Copy
6 5
1 2
2 3
3 4
4 5
5 6

Sample Output 1

Copy
4

If we add edges as shown below, four edges can be added, and no more.

技术分享


Sample Input 2

Copy
5 5
1 2
2 3
3 1
5 4
5 1

Sample Output 2

Copy
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;
}
View Code

 

CODE FESTIVAL 2017 qual B C - 3 Steps

标签:none   read   ros   二分图染色   oss   exactly   already   find   ble   

原文地址:http://www.cnblogs.com/lyzuikeai/p/7639527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!