Virtual Friends
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3027 Accepted Submission(s): 883
Problem Description
These days, you can do all sorts of things online. For example, you can use various websites to make virtual friends. For some people, growing their social network (their friends, their friends' friends, their friends' friends' friends, and so on), has become an addictive hobby. Just as some people collect stamps, other people collect virtual friends.
Your task is to observe the interactions on such a website and keep track of the size of each person's network.
Assume that every friendship is mutual. If Fred is Barney's friend, then Barney is also Fred's friend.
Your task is to observe the interactions on such a website and keep track of the size of each person's network.
Assume that every friendship is mutual. If Fred is Barney's friend, then Barney is also Fred's friend.
Input
Input file contains multiple test cases.
The first line of each case indicates the number of test friendship nest.
each friendship nest begins with a line containing an integer F, the number of friendships formed in this frindship nest, which is no more than 100 000. Each of the following F lines contains the names of two people who have just become friends, separated by a space. A name is a string of 1 to 20 letters (uppercase or lowercase).
The first line of each case indicates the number of test friendship nest.
each friendship nest begins with a line containing an integer F, the number of friendships formed in this frindship nest, which is no more than 100 000. Each of the following F lines contains the names of two people who have just become friends, separated by a space. A name is a string of 1 to 20 letters (uppercase or lowercase).
Output
Whenever a friendship is formed, print a line containing one integer, the number of people in the social network of the two people who have just become friends.
Sample Input
1
3
Fred Barney
Barney Betty
Betty Wilma
Sample Output
2
3
4
题意:
给一次朋友配对关系就更新一次朋友圈的人数。
思路:
并查集,用Map关联容器给每个人名配对上序号,最后将序号合并就可以了。
AC:
#include<cstdio> #include<string> #include<map> using namespace std; int root[100005]; int rank[100005]; int find(int a) { int x=a,t; while(x!=root[x]) x=root[x]; while(x!=a) { t=root[a]; root[a]=x; a=t; } return x; } void merge(int a,int b) { int fa,fb; fa=find(a); fb=find(b); if(fa!=fb) { rank[fb]+=rank[fa]; root[fa]=fb; } printf("%d\n",rank[fb]); //更新完一次就输出一次 } int main() { int n; while(scanf("%d",&n)!=EOF) { map<string,int> m; while(n--) { int t,k=1; char name1[25],name2[25]; m.clear(); for(int i=1;i<100005;i++) root[i]=i,rank[i]=1; scanf("%d",&t); while(t--) { scanf("%s%s",name1,name2); if(m.find(name1)==m.end()) m[name1]=k++; if(m.find(name2)==m.end()) m[name2]=k++; //给人名配上序号 merge(m[name1],m[name2]); } } } return 0; }
总结:
1.WA了几次,因为要用while(scanf("%d",&n)!=EOF)多次输入;
2.每次合并一次就输出一次人数,不需要每次合并完再遍历一次rank数组找出最大值,这题比较特殊,只有一个集合,只要合并一次更新一次后马上输出即可。如果要遍历的话会TLE。
相关推荐
本资源提供了关于带权并查集的题目,例如 Virtual Friends、Dragon Balls、Zjnu Stadium等。 异或并查集 异或并查集是一种数据结构,用于处理异或操作的并查集。本资源提供了关于异或并查集的题目,例如 Exclusive...
” 表明这本用户手册旨在全面介绍VirtualLab软件的使用方法,提供详尽的操作说明,并通过实例演示来加深用户对软件功能的理解和应用。 标签:“virtuallab” 是指VirtualLab这款软件的相关内容。 接下来是手册中的...
Virtual Audio Cable(虚拟音频线缆)是一款强大的音频处理工具,主要针对那些需要在多个音频应用程序之间传输音频流的用户。这个软件尤其对于Windows 7用户来说是一个福音,因为它有效地解决了该操作系统中立体声...
KNX标准基于EIB(European Installation Bus)并融合了其他几种协议,如BACnet和Home Automation。该技术旨在提高能源效率,提供智能化和舒适的生活环境。 **KNX Virtual的核心特性** 1. **虚拟设备模拟**:KNX ...
基于 MATLAB 2022b 新出的Virtual Vehicle Composer 搭建虚拟车辆模型.zip 基于 MATLAB 2022b 新出的Virtual Vehicle Composer 搭建虚拟车辆模型.zip 基于 MATLAB 2022b 新出的Virtual Vehicle Composer 搭建虚拟...
当用户在计算机上安装并使用过Virtual Audio Cable后,即便通过标准卸载程序进行了卸载,也可能因为某些系统文件或注册表项未能被完全移除而引发安装失败的情况。具体来说,这些未被清理干净的残留包括但不限于: - ...
VirtualXposed 是基于VirtualApp 和 epic 在非ROOT环境下运行Xposed模块的实现(支持5.0~10.0)。 与 Xposed 相比,目前 VirtualXposed 有两个限制: 不支持修改系统(可以修改普通APP中对系统API的调用),因此...
4. **SDK开发**:SDK则是开发者构建Android应用的工具集,包括编译器、调试器、模拟器等。在VirtualApp项目中,SDK用于构建用户界面、处理应用交互逻辑以及与NDK部分进行通信。 5. **安卓双开**:实现安卓双开的...
VMware Virtual SAN(简称VSAN)是VMware公司推出的一款软件定义的存储解决方案,它是VMware vSphere的一部分,专为虚拟化环境设计,可以将服务器的本地存储资源(如硬盘和闪存)聚合在一起,形成一个高性能、可扩展...
它跟Eltima VSPD(Virtual Serial Port Driver)的功能类似,厂商不同,Fabula公司的软件。这是当前最新版本,带注册机。http://www.fabulatech.com/virtual-serial-port-kit.html ,Create virtual serial ports and ...
在编程和电子设计的世界里,VirtualBreadboard(简称VBB)是一款深受新手和经验丰富的开发者喜爱的工具。它提供了一个直观且易于理解的环境,模拟了Arduino的开发过程,使得用户无需物理面包板和元器件就能进行电路...
VirtualApp is an open platform for Android that allows you to create a Virtual Space, you can install and run apk inside. Beyond that, VirtualApp is also a Plugin Framework, the plugins running on ...
Virtual Serial Port Driver 7.2.308 + vspdctl.... The applications can exchange data on virtual ports through virtual null-modem cable. The data sent from one port to another will be received momentarily.
虚拟键盘:hot virtual keyboard
【KNX Virtual-v250.zip】是一款专为学习和调试KNX系统设计的虚拟工具,它使得在没有实物设备的情况下也能进行KNX项目的配置和测试。KNX(欧洲建筑总线)是一种国际标准,广泛应用于智能建筑的控制系统,如智能照明...
《虚拟面包板Virtual Breadboard 4.3.8:单片机开发的高效工具》 在电子工程领域,单片机开发是一项基础且至关重要的工作。为了帮助工程师们更便捷地进行开发,出现了各种集成开发环境(IDE)。Virtual Breadboard...
本资源中含VirtualTreeView V6.3和V5.5.3全部文件,另加PDF格式的使用说明(810页)。 V6.X Embacadero's RAD Studio XE3 - 10.1 Berlin V5.X Delphi7 - Delphi XE8 (本资源含VirtualTreeView V5.5.3) Virtual ...
在C++编程中,`virtual`关键字是实现多态性(Polymorphism)的关键机制,这对于理解和编写面向对象的代码至...理解并熟练运用`virtual`函数、构造函数和析构函数的特性,以及继承和重写,是掌握C++面向对象编程的基础。
随着企业的发展和技术的进步,LMS逐渐扩展其业务范围至多领域仿真和测试解决方案,并于2010年成为西门子PLM软件的一部分。2014年起,LMS品牌正式更名为Siemens STS(Siemens Test and Simulation),标志着西门子...
6. **新增材料属性和边界定义**:LMS Virtual.Lab 11 新增了对吸声材料温度梯度属性的支持,并支持有限元边界面定义功能以及自动识别和移除有限元重叠面的功能。这些增强使得声学有限元边界条件的创建和施加变得更加...