IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> CodeForces - 1559D2 Mocha and Diana (Hard Version)(思维) -> 正文阅读

[开发测试]CodeForces - 1559D2 Mocha and Diana (Hard Version)(思维)

题目链接:点击查看

题目大意:给出两棵森林,每次可以同时在两个森林中增加同一条边,问最多可以增加多少条边,使得两个森林仍然还是森林

题目分析:结论参考至:https://blog.csdn.net/RunningBeef/article/details/119738571?utm_source=app&app_version=4.13.0&code=app_1562916241&uLinkId=usr1mkqgl919blen

首先对于所有的点尝试与点 1 1 1 建边,此后考虑除了点 1 1 1 以外的联通块。假设两个森林中的联通块集合分别为 s 1 s1 s1 s 2 s2 s2,那么令 s 1 s1 s1 中的连通块和 s 2 s2 s2 中的任意一个连通块相连都是合法的

代码:

// Problem: D2. Mocha and Diana (Hard Version)
// Contest: Codeforces - Codeforces Round #738 (Div. 2)
// URL: https://codeforces.com/contest/1559/problem/D2
// Memory Limit: 256 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

// #pragma GCC optimize(2)
// #pragma GCC optimize("Ofast","inline","-ffast-math")
// #pragma GCC target("avx,sse2,sse3,sse4,mmx")
#include<iostream>
#include<cstdio>
#include<string>
#include<ctime>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<stack>
#include<climits>
#include<queue>
#include<map>
#include<set>
#include<sstream>
#include<cassert>
#include<bitset>
#include<list>
#include<unordered_map>
#define lowbit(x) (x&-x)
using namespace std;
typedef long long LL;
typedef unsigned long long ull;
template<typename T>
inline void read(T &x)
{
	T f=1;x=0;
	char ch=getchar();
	while(0==isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
	while(0!=isdigit(ch)) x=(x<<1)+(x<<3)+ch-'0',ch=getchar();
	x*=f;
}
template<typename T>
inline void write(T x)
{
	if(x<0){x=~(x-1);putchar('-');}
    if(x>9)write(x/10);
    putchar(x%10+'0');
}
const int inf=0x3f3f3f3f;
const int N=1e6+100;
int f1[N],f2[N];
int find1(int x) {
	return f1[x]==x?x:f1[x]=find1(f1[x]);
}
int find2(int x) {
	return f2[x]==x?x:f2[x]=find2(f2[x]);
}
bool check1(int x,int y) {
	int xx=find1(x),yy=find1(y);
	if(xx!=yy) {
		return true;
	}
	return false;
}
bool check2(int x,int y) {
	int xx=find2(x),yy=find2(y);
	if(xx!=yy) {
		return true;
	}
	return false;
}
void merge1(int x,int y) {
	int xx=find1(x),yy=find1(y);
	f1[xx]=yy;
}
void merge2(int x,int y) {
	int xx=find2(x),yy=find2(y);
	f2[xx]=yy;
}
void init() {
	for(int i=0;i<N;i++) {
		f1[i]=f2[i]=i;
	}
}
int main()
{
#ifndef ONLINE_JUDGE
//	freopen("data.in.txt","r",stdin);
//	freopen("data.out.txt","w",stdout);
#endif
//	ios::sync_with_stdio(false);
	init();
	int n,m1,m2;
	cin>>n>>m1>>m2;
	for(int i=1;i<=m1;i++) {
		int u,v;
		read(u),read(v);
		merge1(u,v);
	}
	for(int i=1;i<=m2;i++) {
		int u,v;
		read(u),read(v);
		merge2(u,v);
	}
	vector<pair<int,int>>ans;
	vector<int>rt1,rt2;
	for(int i=2;i<=n;i++) {
		if(check1(1,i)&&check2(1,i)) {
			merge1(1,i),merge2(1,i);
			ans.push_back({1,i});
		}
	}
	for(int i=2;i<=n;i++) {
		if(find1(i)==i&&check1(1,i)) {
			rt1.push_back(i);
		}
		if(find2(i)==i&&check2(1,i)) {
			rt2.push_back(i);
		}
	}
	for(int i=0;i<(int)min(rt1.size(),rt2.size());i++) {
		ans.push_back({rt1[i],rt2[i]});
	}
	cout<<ans.size()<<endl;
	for(auto it:ans) {
		cout<<it.first<<' '<<it.second<<endl;
	}
	return 0;
}
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2021-08-19 12:21:43  更:2021-08-19 12:22:42 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/17 20:20:06-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码