codeforces 557D Vitaly and Cycle
题意简述
给定一个图 求至少添加多少条边使得它存在奇环 并求出添加的方案数
(注意不考虑自环)
-----------------------------------------------------------------------------
一道二分图染色的讨论题
比赛时只会用二分图染色判断树以及偶环 忘记用这个来判奇环。。。
二分图染色这种联赛知识点的题目现在也不会写了。。。
------------------------------------------------------------------------------
我们可以按需要添加边的条数来讨论这题
首先讨论添加边条数为3——即原原图边数m为0时
$ans=n*(n-1)*(n-2)/6$
再讨论添加边条数为2——即原图中所有边都没有公共端点/所有点度数<=1 时
$ans=m*(n-2)$
再讨论添加边数为0——即原图中存在奇环时
$ans=1$
最后讨论添加边数为1——即原图中只有树以及偶环
$ans=\sum(white[i]-1)*white[i]/2+(black[i]-1)*black[i]/2$
其实思路清晰后实现起来就很容易了
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#define rep(i,n) for(int i=1;i<=n;++i)
#define imax(x,y) (x>y?x:y)
#define imin(x,y) (x<y?x:y)
using namespace std;
const int N=;
int firste[N],nexte[N<<],v[N<<];
int color[N],fa[N],bl[N],wh[N],degree[N];
int n,m,e=,flag=;
long long ans=;
void build_edge(int x,int y)
{
++e;
nexte[e]=firste[x];
firste[x]=e;
v[e]=y;
}
void dfs(int u,int c,int f)
{
color[u]=c;
fa[u]=f;
if(c&)++bl[f];
else ++wh[f];
for(int p=firste[u];p;p=nexte[p])
if(!color[v[p]])dfs(v[p],-c,f);
else if(color[v[p]]==color[u])
{
flag=;
return;
}
}
int main()
{
int x,y;
scanf("%d%d",&n,&m);
if(!m)
{
ans=(long long)n*(n-)*(n-)/;
printf("3 %I64d",ans);
return ;
}
rep(i,m)
{
scanf("%d%d",&x,&y);
build_edge(x,y);
build_edge(y,x);
++degree[x];
++degree[y];
if(degree[x]>||degree[y]>)flag=;
}
if(flag)
{
ans=(long long)m*(n-);
printf("2 %I64d",ans);
return ;
}
int cnt=;
rep(i,n)
if(!color[i])
{
dfs(i,,++cnt);
if(flag)
{
printf("0 1");
return ;
}
}
rep(i,cnt)
ans+=(long long)(wh[i]-)*wh[i]/+(long long)(bl[i]-)*bl[i]/;
printf("1 %I64d",ans);
return ;
}
codeforces 557D Vitaly and Cycle的更多相关文章
- CodeForces - 557D Vitaly and Cycle(二分图)
Vitaly and Cycle time limit per test 1 second memory limit per test 256 megabytes input standard inp ...
- codeforces 557D. Vitaly and Cycle 二分图染色
题目链接 n个点, m条边, 问最少加几条边可以出现一个奇环, 在这种情况下, 有多少种加边的方式. 具体看代码解释 #include<bits/stdc++.h> using names ...
- Codeforces Round #311 (Div. 2) D. Vitaly and Cycle 图论
D. Vitaly and Cycle Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/557/p ...
- codeforces 557 D. Vitaly and Cycle 组合数学 + 判断二分图
D. Vitaly and Cycle time limit per test 1 second memory limit per test 256 megabytes input sta ...
- Codeforces Round #311 (Div. 2) D. Vitaly and Cycle 奇环
题目链接: 点这里 题目 D. Vitaly and Cycle time limit per test1 second memory limit per test256 megabytes inpu ...
- Codeforces Round #311 (Div. 2) D - Vitaly and Cycle
D. Vitaly and Cycle time limit per test 1 second memory limit per test 256 megabytes input standard ...
- 【34.57%】【codeforces 557D】Vitaly and Cycle
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- Codeforces Round #311 (Div. 2) D - Vitaly and Cycle(二分图染色应用)
http://www.cnblogs.com/wenruo/p/4959509.html 给一个图(不一定是连通图,无重边和自环),求练成一个长度为奇数的环最小需要加几条边,和加最少边的方案数. 很容 ...
- codeforces 518A. Vitaly and Strings
A. Vitaly and Strings time limit per test 1 second memory limit per test 256 megabytes input standar ...
随机推荐
- spring容器、spring MVC容器以及web容器的区别
本文转载自 https://www.cnblogs.com/xiexin2015/p/9023239.html 说到spring和springmvc,其实有很多工作好多年的人也分不清他们有什么区别,如 ...
- securecrt(CRT)导入会话
securecrt是个非常流行的远程管理维护工具,支持fssh.ssh2.telnet等多种协议,也支持中文.设备管理多了,自行手工添加也是很累的活.偷下懒,从别人那复制下文件,倒入到自己的secur ...
- python开发之路-day03
一 文件操作一 介绍 计算机系统分为:计算机硬件,操作系统,应用程序三部分. 我们用python或其他语言编写的应用程序若想要把数据永久保存下来,必须要保存于硬盘中,这就涉及到应用程序要操作硬件,众所 ...
- rsync配置教程
本文默认服务器已经安装了 rsync ! 本文默认服务器已经安装了 rsync ! 本文默认服务器已经安装了 rsync ! 切换到 /etc目录,默认情况下,rsyncd.conf 文件如下: # ...
- Linux之systemd服务配置及自动重启
layout: post title: Linux之systemd服务配置及自动重启 date: 2019-09-09 tags: linux --- Linux之systemd服务配置及自动重启 0 ...
- js 柯里化、深拷贝、浅拷贝
curry const sum = (a, b, c, d) => a + b + c + d const curry = fn => (judge = (...args) => a ...
- 【JAVA】 01-Java基础知识
链接: 笔记目录:毕向东Java基础视频教程-笔记 GitHub库:JavaBXD33 测试 01-Java基础知识 一.数据类型 基本类型 包装类型 缓存池 二.String 概览 不可变的好处 S ...
- JSON:结构化数据格式
JSON是javascript的子类,也是作为更好的互联网传输结构化数据格式逐渐取代XML,因此要理解JSON,重要的是理解它是一种数据格式,不是一种编程语言. 语法 //javascript var ...
- Ajax异步请求返回文件流(eg:导出文件时,直接将导出数据用文件流的形式返回客户端供客户下载)
在异步请求中要返回文件流,不能使用JQuery,因为$.ajax,$.post 不支持返回二进制文件流的类型,可以看到下图,dataType只支持xml,json,script,html这几种格式,没 ...
- Pjsip Porting to Hisilicon SOC
1)HiSilicon Compiler arm-himix100-linux.tgz or arm-himix100-linux.tgz #Installation instructions are ...