题库练习 Chemical table
← 上一题 下一题 →

A11907 | Chemical table

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Innopolis University scientists continue to investigate the periodic table. There are $n·m$ known elements and they form a periodic table: a rectangle with $n$ rows and $m$ columns. Each element can be described by its coordinates $(r,c)$ ( $1<=r<=n$ , $1<=c<=m$ ) in the table.

Recently scientists discovered that for every four different elements in this table that form a rectangle with sides parallel to the sides of the table, if they have samples of three of the four elements, they can produce a sample of the fourth element using nuclear fusion. So if we have elements in positions $(r_{1},c_{1})$ , $(r_{1},c_{2})$ , $(r_{2},c_{1})$ , where $r_{1}≠r_{2}$ and $c_{1}≠c_{2}$ , then we can produce element $(r_{2},c_{2})$ .

![](/uploads/acgo/image/9e6bedd027ed97d4_165d381a6745.jpeg)Samples used in fusion are not wasted and can be used again in future fusions. Newly crafted elements also can be used in future fusions.

Innopolis University scientists already have samples of $q$ elements. They want to obtain samples of all $n·m$ elements. To achieve that, they will purchase some samples from other laboratories and then produce all remaining elements using an arbitrary number of nuclear fusions in some order. Help them to find the minimal number of elements they need to purchase.

输入格式

The first line contains three integers $n$ , $m$ , $q$ ( $1<=n,m<=200000$ ; $0<=q<=min(n·m,200000)$ ), the chemical table dimensions and the number of elements scientists already have.

The following $q$ lines contain two integers $r_{i}$ , $c_{i}$ ( $1<=r_{i}<=n$ , $1<=c_{i}<=m$ ), each describes an element that scientists already have. All elements in the input are different.

输出格式

Print the minimal number of elements to be purchased.

输入输出样例

输入 #1
2 2 3
1 2
2 2
2 1
输出 #1
0
输入 #2
1 5 3
1 3
1 1
1 5
输出 #2
2
输入 #3
4 3 6
1 2
1 3
2 2
2 3
3 1
3 3
输出 #3
1
C++ 编辑器
输入
输出