【2019牛客暑期多校训练营(第三场)- A】Graph Games(思维,对边分块)

题干:

链接:https://ac.nowcoder.com/acm/contest/883/A
来源:牛客网
 

You are given an undirected graph with  N\ N N vertices and  M\ M M  edges. The edges are numbered from  1\ 1 1 to  M\ M M  . Denote the set  S(x)\ S(x) S(x)  as: All the vertices we can reach from vertex  x\ x x   by exactly one edge.
 

You are supposed to deal with  Q\ Q Q operations of the following two types:

  1.  (1,l,r)\ (1,l,r) (1,l,r)-- reverse the status of edges numbered between  l\ l l  to  r\ r r  (1≤l≤r≤M)(1 \leq l \leq r \leq M)(1≤l≤r≤M) . i.e. Delete the edge if it is in the graph, otherwise add it to the graph. 
  2.  (2,u,v)\ (2,u,v) (2,u,v) -- ask whether  S(u)\ S(u) S(u)   and  S(v)\ S(v) S(v)   are exactly the same (1≤u≤v≤N)(1 \leq u \leq v \leq N)(1≤u≤v≤N).


Note that all the  M\ M M  edges are in the graph at the beginning.

 

输入描述:

The input contains multiple cases. The first line of the input contains a single positive integer  T\ T T , the number of cases.For each case, the first line contains two integers N (1≤N≤100000)N\ (1 \leq N \leq 100000)N (1≤N≤100000)  and M (1≤M≤200000)M\ (1 \leq M \leq 200000)M (1≤M≤200000), the number of vertices and edges in the graph. In the following  M\ M M  lines, the  i\ i i-th line contains two integers ui,vi (1≤ui,vi≤N)u_i,v_i \ (1 \le u_i,v_i \le N)ui​,vi​ (1≤ui​,vi​≤N) , describing the the  i\ i i-th edge (ui,vi)(u_i,v_i)(ui​,vi​) . Each edge appears in the input at most once. The  (M+2)\ (M+2) (M+2)-th line contains a integer Q (1≤Q≤200000)Q\ (1 \leq Q \leq 200000)Q (1≤Q≤200000) , the number of operations. In the following  Q\ Q Q  lines, each line contains three integers, describing an operation.The total sum of  N\ N N over all cases does not exceed  150000\ 150000 150000. The total sum of  M\ M Mover all cases does not exceed  800000\ 800000 800000. The total sum of  Q\ Q Q  over all cases does not exceed  600000\ 600000 600000.

输出描述:

For each case, print a string in a line. The length of the string should equal the number of operations of type  2\ 2 2. If the answer is yes, the  i\ i i-th character of the string should be `1', otherwise it should be `0'. Check the samples for more details.

示例1

输入

复制

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

输出

复制

10

题目大意:

一个n个点m条边的的图,2种操作:
1 l r 表示从读入的编号为l的边到第r条边,如果有这条边就删掉,否则就加上
2 x y 表示问与点x直接相连的点集是否与y直接相连的点集相同

解题报告:

Hash数组是每个点映射成一个值。

L 和 R 数组对应每个块的左右编号。

O代表单点更新的点的Hash值,laz代表整块的翻转次数的奇偶数。

B数组是预处理数组,在操作的时候不更新,预处理每个块中的每个点向外连边的Hash值。

将输入的边编号然后对边分块,如果要反转的两个区间不在相邻块内或者相同块,那么暴力l块和暴力r块,块间使用laz标记是否翻转。很优秀的想法。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 1e5 + 5;
int blk[MAX];
int a[MAX<<1],b[MAX<<1];
int n,m,q,tot,Block;
int L[505],R[505],B[505][MAX],laz[505],O[MAX],Hash[MAX]; 
int main()
{for(int i = 1; i<=1e5; i++) Hash[i] = rand(); int t;cin>>t;while(t--) {tot=0;scanf("%d%d",&n,&m);for(int i = 1; i<=n; i++) O[i] = 0;for(int i = 1; i<=m; i++) cin>>a[i]>>b[i];Block = sqrt(m);for(int i = 1; i<=m; i+=Block) {L[++tot] = i;R[tot] = min(m,i+Block-1);for(int j = 1; j<=n; j++) B[tot][j] = 0;for(int j = L[tot]; j<=R[tot]; j++) B[tot][a[j]] ^= Hash[b[j]],B[tot][b[j]] ^= Hash[a[j]];laz[tot] = 0;	}scanf("%d",&q);while(q--) {int op,l,r;	scanf("%d%d%d",&op,&l,&r);if(op == 2) {int x = O[l],y = O[r];for(int i = 1; i<=tot; i++) {if(!laz[i]) x ^= B[i][l],y ^= B[i][r];}printf("%d",x == y);}else {int B1 = (l+Block-1)/Block,B2 = (r+Block-1)/Block;if(B2-B1>=2) {for(int i = B1+1; i<=B2-1; i++) laz[i] ^= 1;for(int i = l; i<=R[B1]; i++) O[a[i]] ^= Hash[b[i]],O[b[i]] ^= Hash[a[i]];for(int i = L[B2]; i<=r; i++) O[a[i]] ^= Hash[b[i]],O[b[i]] ^= Hash[a[i]];}else {for(int i = l; i<=r; i++) O[a[i]] ^= Hash[b[i]],O[b[i]] ^= Hash[a[i]];}				}}puts("");}return 0 ;
}

 

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

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

相关文章

8.深度学习练习:Gradient Checking

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 目录 1) How does gradient checking work? 2) 1-dimensional gradient checking 3) N-dimensional gradie…

苹果手机看电流判断故障

正常的开机电流 1、按开机键后电流在40mA摆动一下&#xff08;CPU供电正常&#xff09;&#xff1b; 2、到80mA左右摆动一下&#xff08;暂存开始工作&#xff0c;也就是CPU上盖&#xff0c;然后开始进行总线的初始化&#xff09;&#xff1b; 3、指针到120mA左右摆动&#xff…

【CodeForces - 675C】Money Transfers(思维,前缀和)

题干&#xff1a; There are n banks in the city where Vasya lives, they are located in a circle, such that any two banks are neighbouring if their indices differ by no more than 1. Also, bank 1 and bank n are neighbours if n > 1. No bank is a neighbou…

9.深度学习练习:Optimization Methods

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 目录 1 - Gradient Descent 2 - Mini-Batch Gradient descent 3 - Momentum 4 - Adam 5 - Model with dif…

一步步编写操作系统 22 硬盘操作方法

硬盘中的指令很多&#xff0c;各指令的用法也不同。有的指令直接往command寄存器中写就行了&#xff0c;有的还要在feature寄存器中写入参数&#xff0c;最权威的方法还是要去参考ATA手册。由于本书中用到的都是简单的指令&#xff0c;所以对此抽象出一些公共的步骤仅供参考之用…

10.深度学习练习:Convolutional Neural Networks: Step by Step(强烈推荐)

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 目录 1 - Packages 2 - Outline of the Assignment 3 - Convolutional Neural Networks 3.1 - Zero-Paddin…

【HDU - 2639】Bone Collector II (第K大背包,dp,STLset)

题干&#xff1a; The title of this problem is familiar,isnt it?yeah,if you had took part in the "Rookie Cup" competition,you must have seem this title.If you havent seen it before,it doesnt matter,I will give you a link: Here is the link: http…

一步步编写操作系统 23 重写主引导记录mbr

本节我们在之前MBR的基础上&#xff0c;做个稍微大一点的改进&#xff0c;经过这个改进后&#xff0c;我们的MBR可以读取硬盘。听上去这可是个大“手术”呢&#xff0c;我们要将之前学过的知识都用上啦。其实没那么大啦&#xff0c;就是加了个读写磁盘的函数而已&#xff0c;哈…

11.深度学习练习:Keras tutorial - the Happy House(推荐)

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ Welcome to the first assignment of week 2. In this assignment, you will: Learn to use Keras, a high-lev…

【HDU - 5014】Number Sequence(贪心构造)

题干&#xff1a; There is a special number sequence which has n1 integers. For each number in sequence, we have two rules: ● a i ∈ [0,n] ● a i ≠ a j( i ≠ j ) For sequence a and sequence b, the integrating degree t is defined as follows(“♁” deno…

一步步编写操作系统 24 编写内核加载器

这一节的内容并不长&#xff0c;因为在进入保护模式之前&#xff0c;我们能做的不多&#xff0c;loader是要经过实模式到保护模式的过渡&#xff0c;并最终在保护模式下加载内核。本节只实现一个简单的loader&#xff0c;本loader只在实模式下工作&#xff0c;等学习了保护模式…

12.深度学习练习:Residual Networks(注定成为经典)

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 目录 1 - The problem of very deep neural networks 2 - Building a Residual Network 2.1 - The identity…

【HDU - 5869】Different GCD Subarray Query(思维,数学,gcd,离线处理,查询区间不同数,树状数组 或 二分RMQ)

题干&#xff1a; This is a simple problem. The teacher gives Bob a list of problems about GCD (Greatest Common Divisor). After studying some of them, Bob thinks that GCD is so interesting. One day, he comes up with a new problem about GCD. Easy as it look…

13.深度学习练习:Autonomous driving - Car detection(YOLO实战)

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ Welcome to your week 3 programming assignment. You will learn about object detection using the very pow…

一步步编写操作系统 25 cpu的保护模式

在保护模式下&#xff0c;我们将见到很多在实模式下没有的新概念&#xff0c;很多都是cpu硬件原生提供&#xff0c;并且要求的东西&#xff0c;也就是说按照cpu的设计&#xff0c;必须有这些东西cpu才能运行。咱们只要了解它们是什么并且怎么用就行了&#xff0c;不用深入到硬件…

【HDU - 5876】Sparse Graph(补图bfs,STLset)

题干&#xff1a; In graph theory, the complementcomplement of a graph GG is a graph HH on the same vertices such that two distinct vertices of HH are adjacent if and only if they are notnotadjacent in GG. Now you are given an undirected graph GG of NN no…

14.深度学习练习:Face Recognition for the Happy House

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ Welcome to the first assignment of week 4! Here you will build a face recognition system. Many of the i…

java Integer 源码学习

转载自http://www.hollischuang.com/archives/1058 Integer 类在对象中包装了一个基本类型 int 的值。Integer 类型的对象包含一个 int 类型的字段。 此外&#xff0c;该类提供了多个方法&#xff0c;能在 int 类型和 String 类型之间互相转换&#xff0c;还提供了处理 int 类…

【HDU - 5875】Function(线段树,区间第一个小于某个数的数 或 RMQ二分)

题干&#xff1a; The shorter, the simpler. With this problem, you should be convinced of this truth. You are given an array AA of NN postive integers, and MM queries in the form (l,r)(l,r). A function F(l,r) (1≤l≤r≤N)F(l,r) (1≤l≤r≤N) is defin…

15.深度学习练习:Deep Learning Art: Neural Style Transfer

本文节选自吴恩达老师《深度学习专项课程》编程作业&#xff0c;在此表示感谢。 课程链接&#xff1a;https://www.deeplearning.ai/deep-learning-specialization/ 目录 1 - Problem Statement 2 - Transfer Learning 3 - Neural Style Transfer 3.1 - Computing the cont…