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 Round #738 (Div. 2) D2. Mocha and Diana (Hard Version) -> 正文阅读

[开发测试]Codeforces Round #738 (Div. 2) D2. Mocha and Diana (Hard Version)

题目链接
This is the hard version of the problem. The only difference between the two versions is the constraint on n n n. You can make hacks only if all versions of the problem are solved.

A forest is an undirected graph without cycles (not necessarily connected).

Mocha and Diana are friends in Zhijiang, both of them have a forest with nodes numbered from 1 1 1 to n n n, and they would like to add edges to their forests such that:

  • After adding edges, both of their graphs are still forests.
  • They add the same edges. That is, if an edge ( u , v ) (u, v) (u,v) is added to Mocha’s forest, then an edge ( u , v ) (u, v) (u,v) is added to Diana’s forest, and vice versa.

Mocha and Diana want to know the maximum number of edges they can add, and which edges to add.

Input

The first line contains three integers n n n, m 1 m_1 m1? and m 2 m_2 m2? ( 1 ≤ n ≤ 1 0 5 1 \le n \le 10^5 1n105, 0 ≤ m 1 , m 2 < n 0 \le m_1, m_2 < n 0m1?,m2?<n) — the number of nodes and the number of initial edges in Mocha’s forest and Diana’s forest.

Each of the next m 1 m_1 m1? lines contains two integers u u u and v v v ( 1 ≤ u , v ≤ n 1 \le u, v \le n 1u,vn, u ≠ v u \neq v u?=v) — the edges in Mocha’s forest.

Each of the next m 2 m_2 m2? lines contains two integers u u u and v v v ( 1 ≤ u , v ≤ n 1 \le u, v \le n 1u,vn, u ≠ v u \neq v u?=v) — the edges in Diana’s forest.

Output

The first line contains only one integer h h h, the maximum number of edges Mocha and Diana can add.

Each of the next h h h lines contains two integers u u u and v v v ( 1 ≤ u , v ≤ n 1 \le u, v \le n 1u,vn, u ≠ v u \neq v u?=v) — the edge you add each time.

If there are multiple correct answers, you can print any one of them.

Examples

input

3 2 2
1 2
2 3
1 2
1 3

output

0

这道题貌似可以用各种随机乱搞等各种玄学卡过去,这里给出一个比较科学的的做法。
先说结论:最终边数较多的图一定连成了一棵树。
首先是加边问题,显然只要遇到满足条件的边就直接加上结果一定不会变差。因为假设加上这一条边会使得有两条及以上边加不上,因为加这条边影响的边只能是连接和这条边一样的连通分量的边,而这样的边要是加两条一定会出现环,这与条件矛盾,因此贪心的加即可。
然后考虑加边的策略,首先先按这种策略加边:枚举所有点,如果在两个图中均可以向节点 1 1 1 连边则直接连边。这样处理的结果是一定是下图所示类型:在这里插入图片描述
其中一种颜色代表一类点集,相同颜色代表同一点集。
可以发现,此时可以继续加的边只能是蓝色和绿色点集之间的边,进而可以得出对于两图中不包含节点 1 1 1 的连通分量只能向外连至多一条边,并且不包含节点 1 1 1 的连通分量数量较少的图一定能连成一棵树。由此可以通过双指针 O ( n ) O(n) O(n) 将剩余部分连完。并查集操作近似看做常数,总时间复杂度为 O ( n ) O(n) O(n)

#include <bits/stdc++.h>

using namespace std;
const int N = 1e5 + 10;

struct Union_Find {
    int fa[N], rnk[N];

    inline void init(int n) { iota(fa + 1, fa + 1 + n, 1); }

    int get(int x) { return x == fa[x] ? x : (fa[x] = get(fa[x])); }

    inline void merge(int x, int y) {
        x = get(x), y = get(y);
        if (x == y) return;
        if (rnk[x] < rnk[y]) swap(x, y);
        fa[y] = x;
        if (rnk[x] == rnk[y]) rnk[x]++;
    }

    inline bool same(int x, int y) { return get(x) == get(y); }
} U1, U2;

int n, m1, m2, ans;

int main() {
    scanf("%d%d%d", &n, &m1, &m2);
    U1.init(n), U2.init(n);
    for (int i = 1, x, y; i <= m1; i++)
        scanf("%d%d", &x, &y), U1.merge(x, y);
    for (int i = 1, x, y; i <= m2; i++)
        scanf("%d%d", &x, &y), U2.merge(x, y);
    printf("%d\n", ans = n - 1 - max(m1, m2));
    for (int i = 2; i <= n; i++) {
        if (U1.same(1, i) || U2.same(1, i)) continue;
        printf("1 %d\n", i), ans--;
        U1.merge(1, i), U2.merge(1, i);
    }
    for (int i = 2, j = 1; ans; i++) {
        if (U1.same(1, i)) continue;
        while (U2.same(1, j)) j++;
        printf("%d %d\n", i, j), ans--;
        U1.merge(1, i), U2.merge(1, j);
    }
    return 0;
}
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2021-08-18 12:59:46  更:2021-08-18 13:01:22 
 
开发: 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:25:25-

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