Codeforces Round 134 div 2 C题

本题是一道关于并查集的应用题,目标是最小化新建雪堆数量,使得任意两个雪堆间都可达。通过判断已有雪堆间的相对位置关系来合并集合,最终未合并的集合数减一即为答案。
C. Ice Skating
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed that in this way it's impossible to get from some snow drifts to some other by any sequence of moves. He now wants to heap up some additional snow drifts, so that he can get from any snow drift to any other one. He asked you to find the minimal number of snow drifts that need to be created.

We assume that Bajtek can only heap up snow drifts at integer coordinates.

Input

The first line of input contains a single integer n (1 ≤ n ≤ 100) — the number of snow drifts. Each of the following n lines contains two integers xi and yi (1 ≤ xi, yi ≤ 1000) — the coordinates of the i-th snow drift.

Note that the north direction coinсides with the direction of Oy axis, so the east direction coinсides with the direction of the Ox axis. All snow drift's locations are distinct.

Output

Output the minimal number of snow drifts that need to be created in order for Bajtek to be able to reach any snow drift from any other one.

Sample test(s)
input
2
2 1
1 2
output
1
input
2
2 1
4 1
output
0


这道题看似有点像数学的题目,但实际上是并查集的应用,输入的结点从1编号到n,然后初始化并查集set[i]=i,然后双重循环判断任意两点是否是一个集合的,如果两个点有x或者y相等,则两点属于一个集合。最后看有多少个集合,得到的数字减1 就是结果。

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<algorithm>
using namespace std;

typedef struct Node
{
       int x;
       int y;
}node;

node a[110];
int set[110];
bool vis[110];

int findSet(int x)//查找元素x所属集合 
{
    if(x==set[x]) 
       return x;
    else
       return set[x]=findSet(set[x]);
}


void unionSet(int x,int y)//x和y合并到一个集合中 
{
   int fx=findSet(x);
   int fy=findSet(y);
   set[fy]=fx;
}

int main()
{
    int n;
    scanf("%d",&n);
    int i,j;
    for(i=1;i<=110;i++)
       set[i]=i;
    for(i=1;i<=n;i++)
       scanf("%d%d",&a[i].x,&a[i].y);
    for(i=1;i<=n-1;i++)
    {
        for(j=1;j<=n;j++)
        {
            if(i==j) continue;
            if(a[i].x==a[j].x || a[i].y==a[j].y)
            {unionSet(i,j);}
        }
    }
    int s=0;
    for(i=1;i<=n;i++)
    if(set[i]==i)  s++;//统计有多少个集合 
    printf("%d",s-1);
    //system("pause");
    return 0;
}


 

 

### Codeforces Round 1028 (Div. 2) 目概述 Codeforces Round 1028 (Div. 2) 是一场包含多个算法问的比赛,涵盖了从简单到复杂的不同难度级别。以下是该比赛的部分目内容及简要说明: #### A. Gellyfish and Flower 在本中,有两个角色:Gellyfish 和 Flower。每个角色有两滴血量,分别用 \(a\) 和 \(c\) 表示 Gellyfish 的血量,用 \(b\) 和 \(d\) 表示 Flower 的血量[^3]。 获胜条件是攻击对方的最低血量,并比较双方的最低血量值。如果 Gellyfish 的最低血量小于 Flower 的最低血量,则 Gellyfish 获胜;否则,Flower 获胜。 #### B. Problem - B - Codeforces B 的具体内容未完全提供,但通常涉及数组、字符串或其他数据结构的操作。可以参考比赛页面获取完整描述。 #### C. Rectangles C 要求处理矩形的相关问。具体来说,给定一些矩形的边长信息,需要判断某些条件是否满足。时间限制为每组测试用例 2 秒,内存限制为 256 MB[^2]。输入和输出均为标准格式,详细规则可参考比赛页面。 ### 示例代码(A ) 以下是一个实现 A 逻辑的 C++ 程序: ```cpp #include <iostream> #include <algorithm> using namespace std; int main() { int t; cin >> t; while (t--) { int a, b, c, d; cin >> a >> b >> c >> d; int mina = min(a, c); int minb = min(b, d); if (mina < minb) cout << "Flower" << endl; else cout << "Gellyfish" << endl; } } ``` 此代码通过多次循环读取输入并计算两个角色的最低血量,最终输出获胜者名称。 ### 注意事项 - 比赛中的所有目均可以通过官方链接访问,例如 [Codeforces Round 1028 (Div. 2)](http://codeforces.com/contest/1028)[^2]。 - 每道目的详细规则和样例输入输出可在对应页面找到。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值