[ CodeForces 1065 B ] Vasya and Isolated Vertices
\(\\\)
\(Description\)
求一个\(N\)个点\(M\)条边的无向图,点度为 \(0\) 的点最多和最少的数量。
- \(N\le 10^5,M\le \frac {N\times (N-1)}{2}\)
 
\(\\\)
\(Solution\)
关于最少的数量,注意到一条边会增加两个点度,所以最多能带来 \(2M\) 个点度,最少的零点度点数就是 \(max(N-2M,0)\)。
关于最多的数量,要知道 \(N\) 个点的完全图边数是 \(\frac {N\times (N-1)}{2}\) 。然后就可以二分上界是什么了。
事实上线性扫一下并不会 \(T\) ......
\(\\\)
\(Code\)
#include<cmath>
#include<cstdio>
#include<cctype>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 100010
#define R register
#define gc getchar
using namespace std;
typedef long long ll;
inline int rd(){
  int x=0; bool f=0; char c=gc();
  while(!isdigit(c)){if(c=='-')f=1;c=gc();}
  while(isdigit(c)){x=(x<<1)+(x<<3)+(c^48);c=gc();}
  return f?-x:x;
}
ll n,m,ans,cnt[N];
int main(){
  scanf("%lld%lld",&n,&m);
  printf("%lld ",max(0ll,n-m*2));
  while(m>ans*(ans-1)/2) ++ans;
  printf("%lld\n",n-ans);
  return 0;
}
												
											[ CodeForces 1065 B ] Vasya and Isolated Vertices的更多相关文章
- B. Vasya and Isolated Vertices
		
链接 [http://codeforces.com/contest/1065/problem/B] 题意 给你n个点,m条边,让你找最多孤立点和最少孤立点,不能有自环路 分析 对于最少max(0,n- ...
 - codeforces 676C C. Vasya and String(二分)
		
题目链接: C. Vasya and String time limit per test 1 second memory limit per test 256 megabytes input sta ...
 - Codeforces 1107 E - Vasya and Binary String
		
E - Vasya and Binary String 思路:区间dp + 记忆化搜索 转移方程看上一篇博客. 代码: #pragma GCC optimize(2) #pragma GCC opti ...
 - Codeforces 1076 E - Vasya and a Tree
		
E - Vasya and a Tree 思路: dfs动态维护关于深度树状数组 返回时将当前节点的所有操作删除就能保证每次访问这个节点时只进行过根节点到当前节点这条路径上的操作 代码: #pragm ...
 - Codeforces 1053 B - Vasya and Good Sequences
		
B - Vasya and Good Sequences 思路: 满足异或值为0的区间,必须满足一下条件: 1.区间中二进制1的个数和为偶数个; 2.区间二进制1的个数最大值的两倍不超过区间和. 如果 ...
 - Codeforces 1058 D. Vasya and Triangle(分解因子)
		
题目:http://codeforces.com/contest/1058/problem/D 题意:有一个大小为N*M的矩阵内,构造一个三角形,使面积为(n*m)/k.若存在输出三个顶点(整数). ...
 - codeforces 1041 E.Vasya and Good Sequences(暴力?)
		
E. Vasya and Good Sequences time limit per test 2 seconds memory limit per test 256 megabytes input ...
 - Codeforces 1082 A. Vasya and Book-题意 (Educational Codeforces Round 55 (Rated for Div. 2))
		
A. Vasya and Book time limit per test 2 seconds memory limit per test 256 megabytes input standard i ...
 - Codeforces 837 E Vasya's Function
		
Discription Vasya is studying number theory. He has denoted a function f(a, b) such that: f(a, 0) = ...
 
随机推荐
- 选择器的使用(first-child和last-child选择器)
			
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta ...
 - 【python】glob模块、os模块
			
http://www.cnblogs.com/hongten/p/hongten_python_glob.html http://wenku.baidu.com/link?url=AgUq9_yQVj ...
 - bzoj3190【JLOI2013】赛车
			
3190: [JLOI2013]赛车 Time Limit: 10 Sec Memory Limit: 128 MB Submit: 1445 Solved: 454 [Submit][Statu ...
 - python可变參数调用函数问题
			
一直使用python实现一些想法,近期在使用python的过程中出现这样一个需求,定义了一个函数.第一个是普通參数.第二个是默认參数,后面还有可变參数,在最初学习python的时候,都知道非keywo ...
 - 浏览器判断是否安装了ios/android客户端程序
			
最近在做一个项目,该项目的前身是为mobile browser量身打造的一个网站.现在有这样一个需求: 当用户在用mobile browser浏览该网站的时候会点击一个按钮/超链接,通过这个按钮的点击 ...
 - easyui datagrid 禁止选中行    EF的增删改查(转载)   C# 获取用户IP地址(转载)  MVC EF 执行SQL语句(转载)    在EF中执行SQL语句(转载)  EF中使用SQL语句或存储过程  .net MVC使用Session验证用户登录  PowerDesigner 参照完整性约束(转载)
			
easyui datagrid 禁止选中行 没有找到可以直接禁止的属性,但是找到两个间接禁止的方式. 方式一: //onClickRow: function (rowIndex, rowData) ...
 - hdu5375 Gray code(DP)
			
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5375 题目大意:给你一个二进制串,带'?'的位置能够由你来决定填'1'还是'0',补充完整之后转换成 ...
 - PCCs系数
			
package ai; public class pccs { public static void main(String[] args) { double same[][]=new double[ ...
 - HDoj-1250-Hat's Fibonacci-大数
			
Hat's Fibonacci Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
 - BZOJ_3280_小R的烦恼_最小费用最大流
			
BZOJ_3280_小R的烦恼_最小费用最大流 Description 小R最近遇上了大麻烦,他的程序设计挂科了.于是他只好找程设老师求情.善良的程设老师答应不挂他,但是要 求小R帮助他一起解决一个难 ...