HDU5923-Prediction-有继承味道的并查集

目录

  • 目录
  • 思路:

(有任何问题欢迎留言或私聊 && 欢迎交流讨论哦

目录

题意:传送门

 原题目描述在最下面。
 有一个n个节点m条边的无向图和一个m个节点的有根树(根为1)。树上每个节点和图中的某些边一一对应。
 每次询问给一个树的点的集合S,真实完整的点集合不仅包含集合里面的点,还包含这些点在树上的祖先。这个完整的点集合对应了图中一些边集合。输出这个图的边集合的联通块的个数。


思路:

  • 判断联通用并查集很方便咯。

  • 因为询问带有一点继承的味道。因为每个点的父节点也算在其中了。

  • 所以针对此题要用一个可继承的并查集:对树上每个节点维护一个图连通性的并查集。然后每个子节点\(v\)继承其父节点\(u\)的并查集,并在此基础上将新的一条边\(u->v\)添加进\(v\)节点的并查集。加边就是并查集的合并操作。

  • 对于每个询问,就把点集中每个点的并查集合并。意思就是把每个点的联通块合并在一起。最后数联通块的个数。

  • 代码中还有一点注释。

AC代码:

#include <bits/stdc++.h>
#define mme(a,b) memset((a),(b),sizeof((a)))  
#define fuck(x) cout<<"* "<<x<<"\n"
#define iis std::ios::sync_with_stdio(false)
using namespace std;
int n, m, q;
vector<int> son[10005];
int mp[10005][2], fa[10005][505], vis[505];
int Fi(int id,int x){return fa[id][x]==x?x:fa[id][x]=Fi(id,fa[id][x]);
}
void un(int id,int a,int b){int pa=Fi(id,a),pb=Fi(id,b);if(pa==pb)return;fa[id][pb]=pa;
}
void dfs(int u,int Fa){//每个节点继承其父节点的并查集for(int i=1;i<=n;++i)fa[u][i]=fa[Fa][i];un(u,mp[u][0],mp[u][1]);int len=son[u].size();for(int i=0;i<len;++i){dfs(son[u][i],u);}
}
int main(){
#ifndef ONLINE_JUDGEfreopen("E://ADpan//in.in", "r", stdin);//freopen("E://ADpan//out.out", "w", stdout);
#endifint tim,tc = 0;scanf("%d", &tim);while(tim--){scanf("%d%d",&n,&m);for(int i=0;i<=m;++i)son[i].clear();for(int i=2,x;i<=m;++i){scanf("%d",&x);son[x].push_back(i);}for(int i=1,u,v;i<=m;++i){scanf("%d%d",&u,&v);mp[i][0]=u;mp[i][1]=v;}for(int i=0;i<=n;++i)fa[0][i]=i;dfs(1,0);printf("Case #%d:\n", ++tc);scanf("%d",&q);while(q--){int cnt;scanf("%d",&cnt);for(int i=1;i<=n;++i)fa[0][i]=i,vis[i]=0;//将cnt个节点及其父节点的并查集合并for(int i=0,x;i<cnt;++i){scanf("%d",&x);for(int j=1;j<=n;++j){int tfa = Fi(x,j);//这个处理是精髓if(tfa!=j){//表示在此子图中这两个点联通,故合并un(0,tfa,j);}}}int ans=0;for(int i=1;i<=n;++i){int tmp = Fi(0,i);if(vis[tmp]==0){vis[tmp]=1;ans++;}}printf("%d\n", ans);}}return 0;
}


原题目描述:

Problem Description
There is a graph G=⟨VG,EG⟩ with |VG|=n and |EG|=m, and a magic tree T=⟨VT,ET⟩) rooted at 1, which contains m vertices.

Each vertex of the magic tree corresponds to an edge in the original graph G and each edge occurs in the magic tree exactly once.

Each query includes a set S(S⊆VT), and you should tell Mr. Frog the number of components in the modified graph G‘=(VG,E‘G), where E‘G is a set of edges in which every edge corresponds to a vertex v in magic tree T satisfying at least one of the following two conditions:

∙v∈S.
∙v is an ancestor of some vertices in S.

Note that the queries are independent, and namely one query will not influence another.

Input
The input contains several test cases and the first line of the input data is an integer T, denoting the number of test cases.

For each test case, the first line contains two integers n and m(1≤n≤500,1≤m≤10000), where n is the number of vertices and m is the number of edges.

The second line contains m - 1 integers describing the magic tree, i-th integer represents the parent of the (i + 1)-th vertex.

Then the following m lines describe the edges of the graph G. Each line contains two integers u and v indicating the two ends of the edge.

The next line contains only one integer q(1≤q≤50000), indicating the number of queries.

Then the following q lines represent queries, i-th line represents the i-th query, which contains an integer ki followed by ki integers representing the set Si.

It is guarenteed that ∑qi=1ki≤300000.

Output
For each case, print a line "Case #x:", where x is the case number (starting from 1).

For each query, output a single line containing only one integer representing the answer, namely the number of components.

Sample Input

1
5 4
1 1 3
1 2
2 3
3 4
4 5
3
1 2
2 2 3
2 2 4

Sample Output

Case #1:
3
2
1
Hint

magic tree and the original graph in the sample are:

In the first query, S = {2} and the modified graph G' = {{1, 2, 3, 4}, {(1, 2), (2, 3)}}, thus the number of the components in the modified graph is 3.
In the second query, S = {1, 2, 3}, where 1 is the ancestor of 2 (and 3) in the magic tree, and the modified graph G'' = {{1, 2, 3,4}, {(1, 2), (2, 3), (3, 4)}},
therefore the number of the components in the modified graph is 2.
In the third query, S = {1, 2, 3, 4}, where 1 is the ancestor of 2 (and 4), 3 is the ancestor of 4, and the modified graph G' = {{1, 2, 3,4}, {(1, 2), (2, 3), (3,4), (4, 5)}},
therefore the answer equals to 1.

Source
2016CCPC东北地区大学生程序设计竞赛 - 重现赛

转载于:https://www.cnblogs.com/Cwolf9/p/9433902.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/427239.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

bind安装和主要配置

1 yum -y install bind bind-chroot 2rpm -qa|grep bind&#xff0c;查看安装状态 3service named start服务启动 4主配置文件name.conf Option{} 整个bind的全局选项 Logging{}日志输出选项 Zong 根域 这节比较简单&#xff0c;随便看看即可&#xff0c;持续更新bind相关知识…

为什么火狐浏览器中点击按钮失效_各种浏览器审查、监听http头工具介绍

一、谷歌内置的审查工具(v17.0)。右键点击审查(CtrlShirtAlt)浏览器下方会出现审查框&#xff0c;刷新网页就会出现下图所示&#xff0c;先后点击“netword”-->在下方选中资源(如下图的1.php)-->点击headers二、httpwatch。ShirtF2打开httpwatch点击Record按钮&#xff…

RabbitMQ/pika模块

简介 MessageQueue用于解决跨进程、跨线程、跨应用、跨网络的通信问题。 RabbitMQ使用erlang开发&#xff0c;在windows上使用时要先安装erlang。 官方的示例比较容易理解&#xff0c;可以点这里去看看。 结构 生产者 ---> exchange ---> queue ---> 消费者。 生产者负…

java 对象流_java 对象流的简单使用

对象的输入输出流的作用&#xff1a; 用于写入对象 的信息和读取对象的信息。 使得对象持久化。ObjectInputStream : 对象输入流ObjectOutPutStream &#xff1a;对象输出流简单的实例1 importjava.io.File;2 importjava.io.FileInputStream;3 importjava.io.FileOutputStre…

centos搭建ftp服务器

1安装vsftpd 2备份配置文件 3修改配置文件 vi /etc/vsftpd/vsftpd.conf anonymous_enableNO #允许匿名用户访问为了安全选择关闭 local_enableYES # 允许本地用户登录 write_enableYES # 是否允许写入 local_umask022 # 本地用户上传文件的umask dirmessage_enableYES #为YES…

ihtml2document能不能根据id获取dom_一段监视 DOM 的神奇代码

作者&#xff1a;Eddie Aich翻译&#xff1a;疯狂的技术宅原文&#xff1a;https://dev.to/eddieaich/spy-on-the-dom-3d47未经允许严禁转载通过使用此模块&#xff0c;只需将鼠标悬停在浏览器中&#xff0c;即可快速查看DOM元素的属性。基本上它是一个即时检查器。将鼠标悬停在…

let 和const

let 命令 es6新增了let命令&#xff0c;用于声明变量&#xff0c;与var用法类似&#xff0c;但是使用let声明变量只在它所在的块内有效&#xff0c;而var则是定义的全局变量 {let a10;var b1; } a //a is not defined,外部的a不能访问到上面块中定义的a变量 b //1let不存在…

centos7搭建apache服务器(亲测可用)

1安装apache yum install httpd httpd-devel -y 2开启服务器 systemctl start httpd.service 3开机自启 systemctl enable httpd.service 4关闭防火墙 5端口访问 6修改vi /etc/httpd/conf/httpd.conf&#xff0c;替换 7查看selinux 也可以不修改&#xff0c;放入/var/www/h…

java ssl 双向认证_Java实现 SSL双向认证

我们常见的SSL验证较多的只是验证我们的服务器是否是真实正确的&#xff0c;当然如果你访问的URL压根就错了&#xff0c;那谁也没有办法。这个就是所谓的SSL单向认证。但是实际中&#xff0c;我们有可能还会验证客户端是否符合要求&#xff0c;也就是给我们每个用户颁发一个证书…

python基础公式_一、Python基础(数据类型、基本函数、基本运算)

​1.变量作用&#xff1a;为了简便&#xff0c;运算时方便修改运算中的值&#xff0c;代指一些复杂过长的数据&#xff1b;what&#xff1a;用变量代指一些内容&#xff1b;how&#xff1a;全部由字母、数字和下划线组成&#xff0c;数字不能开头&#xff0c;不能和Python关键词…

Python爬去知乎上问题下所有图片

from zhihu_oauth import ZhihuClient from zhihu_oauth.exception import NeedCaptchaExceptionclient ZhihuClient()try:client.login(email_or_phone, password)print(u"登陆成功!") except NeedCaptchaException:# 保存验证码并提示输入&#xff0c;重新登录wit…

xshell连接突然报Connection closed by foreign host.

1问题描述报错 Connection closed by foreign host. Disconnected from remote host(yaoGS) at 155513. 2登入虚拟机 在linux系统操作中&#xff0c;经常需要连接其他的主机&#xff0c;连接其他主机的服务是openssh-server&#xff0c;它的功能是让远程主机可以通过网络访问…

java 爬虫_探索Java 多线程爬虫及分布式爬虫架构

在我们调试爬虫程序的时候&#xff0c;单线程爬虫没什么问题&#xff0c;但是当我们在线上环境使用单线程爬虫程序去采集网页时&#xff0c;单线程就暴露出了两个致命的问题&#xff1a;采集效率特别慢&#xff0c;单线程之间都是串行的&#xff0c;下一个执行动作需要等上一个…

數據庫ORACLE轉MYSQL存儲過程遇到的坑~(總結)

ORACLE數據庫轉MySQL數據庫遇到的坑 總結 最近在做Oracle轉mysql的工程&#xff0c;遇到的坑是真的多&#xff0c;尤其是存儲過程&#xff0c;以前都沒接觸過類似的知識&#xff0c;最近也差不多轉完了就總結一下。希望能幫到一些人&#xff08;包括以後的自己&#xff09;~ 1&…

java jdbc开启事务_spring jdbc 事务配置

配置WEB.XMLxmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_0.xsd"version"3.0">org.springframework.web.context.ContextLoa…

python 文件指针在文件末尾_python文件操作及seek偏移详解

一、python文件操作中的编码本次测试是基于python 2.7.12 OS:Ubuntu16.04 pycharm环境&#xff0c;以及win7下2.7.12;首先说下汉字在文件中占用的字节数&#xff0c;这个先看以下实验(win7)下 因为linux下不支持gbk&#xff0c;本文不讲utf-8 ,gbk编码具体知识&#xff0c;有…

docker小实战和应用

1运行一个docker 一开始docker进不去&#xff0c;需要去https://hub.docker.com注册一个 2docker info查看信息 3docker run ubuntu echo hello world 查看第一个命令输出 4docker images 查看本地的镜像 5查看开启的容器和没有开启的容器 Docker ps -a 6 docker pull ngi…

java 窗口 单例_java单例模式实现面板切换

本文实例为大家分享了java单例模式实现面板切换的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下1、首先介绍一下什么是单例模式&#xff1a;java单例模式是一种常见的设计模式&#xff0c;那么我们先看看懒汉模式&#xff1a;public class Singleton_ {//设为私有方…

java垃圾回收机制_干货:Java 垃圾回收机制

什么是自动垃圾回收&#xff1f;自动垃圾回收是一种在堆内存中找出哪些对象在被使用&#xff0c;还有哪些对象没被使用&#xff0c;并且将后者删掉的机制。所谓使用中的对象(已引用对象)&#xff0c;指的是程序中有指针指向的对象&#xff1b;而未使用中的对象(未引用对象)&…

java项目定时任务_java项目定时任务实现

首先配置spring-context.xml文件在xmlns 下加如下代码xmlns:task"http://www.springframework.org/schema/task"在xsi:schemaLocation里添加如下代码http://www.springframework.org/schema/taskhttp://www.springframework.org/schema/task/spring-task-3.1.xsd还有…