[CF1168C] And Reachability
And Reachability
题面翻译
题目描述
Toad Pimple 有一个整数数组 \(a_1,\dots,a_n\)。
当 \(x < y\) 且存在 \(x = p_1 < \dots < p_k = y\) 的数列 \(p\) 满足 \(a_{p_i} \& a_{p_{i+1}} > 0\) 时,我们称 \(y\) 是可从 \(x\) 到达的。
其中 \(\&\) 表示按位与运算。
现在给出 \(q\) 组下标,请检查它们可否到达。
输入输出格式
输入格式:
第一行,两个整数 \(n,q\;(2 \le n \le 300\,000,1 \le q \le 300\,000)\),表示数组的长度和查询的个数。
第二行,\(n\) 个整数 \(a_1,\dots,a_n\;(0 \le a_i \le 300\;000)\),表示给定的数组。
接下来 \(q\) 行中,第 \(i\) 行两个整数 \(x_i,y_i\;(1 \le x_i < y_i \le n)\),表示你需要检查 \(y_i\) 是否可从 \(x_i\) 到达。
输出格式:
输出 \(q\) 行。
对于每个询问,如果可到达,输出「Shi」,否则输出「Fou」。
说明
第一个样例中,\(a_3 = 0\),与其按位与结果总是 \(0\),所以不可到达。
\(a_2 \& a_4 > 0\),所以 \(4\) 可从 \(2\) 到达。
并且从 \(1\) 到达 \(4\) 中,\(p = [1,2,4]\)。
题目描述
Toad Pimple has an array of integers $ a_1, a_2, \ldots, a_n $ .
We say that $ y $ is reachable from $ x $ if $ x<y $ and there exists an integer array $ p $ such that $ x = p_1 < p_2 < \ldots < p_k=y $ , and $ a_{p_i}, &, a_{p_{i+1}} > 0 $ for all integers $ i $ such that $ 1 \leq i < k $ .
Here $ & $ denotes the bitwise AND operation.
You are given $ q $ pairs of indices, check reachability for each of them.
输入格式
The first line contains two integers $ n $ and $ q $ ( $ 2 \leq n \leq 300,000 $ , $ 1 \leq q \leq 300,000 $ ) — the number of integers in the array and the number of queries you need to answer.
The second line contains $ n $ space-separated integers $ a_1, a_2, \ldots, a_n $ ( $ 0 \leq a_i \leq 300,000 $ ) — the given array.
The next $ q $ lines contain two integers each. The $ i $ -th of them contains two space-separated integers $ x_i $ and $ y_i $ ( $ 1 \leq x_i < y_i \leq n $ ). You need to check if $ y_i $ is reachable from $ x_i $ .
输出格式
Output $ q $ lines. In the $ i $ -th of them print "Shi" if $ y_i $ is reachable from $ x_i $ , otherwise, print "Fou".
样例 #1
样例输入 #1
5 3
1 3 0 2 1
1 3
2 4
1 4
样例输出 #1
Fou
Shi
Shi
提示
In the first example, $ a_3 = 0 $ . You can't reach it, because AND with it is always zero. $ a_2, &, a_4 > 0 $ , so $ 4 $ is reachable from $ 2 $ , and to go from $ 1 $ to $ 4 $ you can use $ p = [1, 2, 4] $ .
有关位运算,按位考虑。
如果改 \(x\) 的时候出现了某一个 \(y\) 也有的位,那就可以直接跳到 \(y\) 了。
那么定义 \(d_{i,j}\) 为第 \(i\) 个数,要跳到一个拥有第 \(j\) 位的数,最前是跳到哪一个。
然后倒着枚举 \(i\),找到一个这个数跳到拥有第 \(k\) 位的到哪里,然后转移 d 数组。
#include<bits/stdc++.h>
using namespace std;
const int N=3e5+5;
int read()
{
int s=0;
char ch=getchar();
while(ch<'0'||ch>'9')
ch=getchar();
while(ch>='0'&&ch<='9')
s=s*10+ch-48,ch=getchar();
return s;
}
int n,q,a[N],mx,nx[20][20],ds[N][20];
int main()
{
// freopen("and.in","r",stdin);
// freopen("and.out","w",stdout);
scanf("%d%d",&n,&q);
for(int i=1;i<=n;i++)
a[i]=read();
for(int i=0;i<=18;i++)
for(int j=0;j<=18;j++)
nx[i][j]=n+1;
for(int j=0;j<=18;j++)
ds[n+1][j]=n+1;
for(int i=n;i;i--)
{
for(int j=0;j<=18;j++)
{
if(a[i]>>j&1)
ds[i][j]=i;
else
ds[i][j]=n+1;
}
for(int j=0;j<=18;j++)
for(int k=0;k<=18;k++)
if((a[i]>>j&1)&&(a[i]>>k&1))
nx[j][k]=i;
for(int j=0;j<=18;j++)
{
int mn=n+1;
for(int k=0;k<=18;k++)
if(a[i]>>k&1)
mn=min(mn,nx[j][k]);
for(int k=0;k<=18;k++)
ds[i][k]=min(ds[i][k],ds[mn][k]);
}
// for(int j=0;j<=7;j++)
// printf("%d ",ds[i][j]);
// puts("");
}
while(q--)
{
int fl=0,x=read(),y=read();
for(int i=0;i<=18;i++)
if(ds[x][i]<=y&&(a[y]>>i&1))
fl=1,puts("Shi"),i=18;
if(!fl)
puts("Fou");
}
}
[CF1168C] And Reachability的更多相关文章
- CF1168C And Reachability 【构造,dp】
题目链接:洛谷 题目描述:给出$n$个数$a_i$,若$i<j$且$a_i & a_j>0$,则$i$到$j$连一条有向边,$q$次询问,询问从$l$开始是否能到达$r$. 数据范 ...
- CF1168C And Reachability(DP)
首先定义 $g[i][j]$ 表示 $i$ 前面(不包括 $i$)第一个第 $j$ 位是 $1$ 的数的位置.可以随便转移. 再定义 $f[i][j]$ 表示 $i$ 前面(包括 $i$)第一个第 $ ...
- iOS网络4——Reachability检测网络状态
一.整体介绍 前面已经介绍了网络访问的NSURLSession.NSURLConnection,还有网页加载有关的webview,基本满足通常的网络相关的开发. 其实在网络开发中还有比较常用的就是网络 ...
- 通读AFN③--HTTPS访问控制(AFSecurityPolicy),Reachability(AFNetworkReachabilityManager)
这一篇主要介绍使用AFN如何访问HTTPS网站以及这些做法的实现原理,还有介绍AFN的网络状态监测部分AFNetworkReachabilityManager,这个模块会和苹果官方推荐的Reachab ...
- 3-HOP: A High-Compression Indexing Scheme for Reachability Query
title: 3-HOP: A High-Compression Indexing Scheme for Reachability Query venue: SIGMOD'09 author: Ruo ...
- IOS开发之网络编程开源类 Reachability应用
先看Reachability.h发现 #import <Foundation/Foundation.h> #import <SystemConfiguration/SystemCon ...
- iOS中使用 Reachability 检测网络
iOS中使用 Reachability 检测网络 内容提示:下提供离线模式(Evernote).那么你会使用到Reachability来实现网络检测. 写本文的目的 了解Reachability都 ...
- Reachability(判断网络是否连接)
类似于一个网络状况的探针. [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(reachabili ...
- iOS开发 利用Reachability判断网络环境
导入头文件:#import "Reachability.h" 然后将 SystemConfiguration.framework 添加进工程: 1.检查当前的网络状态(wifi.W ...
- IOS 网络浅析(一 网络监测~Reachability)
网络监测应用于各种需要连接网络的app设计,由于现在开发的app几乎都用到网络,因此,网络监测也成为了较为重点的知识,下面我给大家简单讲解一下网络监测的实际应用,依旧会有代码哦. 想要实现网络监测,可 ...
随机推荐
- U268603 I Hate This Tree 题解
传送门 一道纯粹的码力 + 卡常题. 前置 矩阵乘法,线段树. 分析 线段树存矩阵. 构造迭代矩阵: \[\begin{pmatrix}f_i&f_{i-1}\end{pmatrix}\tim ...
- LDAP:如何在windows系统下安装LDAP及连接测试
1.LDAP介绍 LDAP是一个基于X.500标准的轻量目录访问协议,与X.500不同,LDAP协议支持TCP/IP连接.全称为Lightweight Directory Access Protoco ...
- Programming abstractions in C阅读笔记:p127-p129
<Programming Abstractions In C>学习第51天,p127-p129,总结如下: 一.技术总结 1. string library 掌握常用函数如strlen,s ...
- OGG-Postgres实时同步到Kafka
(一)数据同步信息 名称 源端 名称 目标端 数据库类型 Postgresql 12.4 组件类型 Kafka IP地址 20.2.127.23 Broker地址 20.2.125.52:9092, ...
- 每日一库:Prometheus
什么是 Prometheus Prometheus 是一个开源的系统监控和警报工具,最初由 SoundCloud 开发,并于 2012 年发布为开源项目.它是一个非常强大和灵活的工具,用于监控应用程序 ...
- 图解Spark排序算子sortBy的核心源码
原创/朱季谦 一.案例说明 以前刚开始学习Spark的时候,在练习排序算子sortBy的时候,曾发现一个有趣的现象是,在使用排序算子sortBy后直接打印的话,发现打印的结果是乱序的,并没有出现完整排 ...
- Solution -「CF 888E」Maximum Subsequence
Description Link. 给一个数列和 \(m\),在数列任选若干个数,使得他们的和对 \(m\) 取模后最大. Solution 记录一下犯下的一个 nt 错误. 首先我们有一个显然的 D ...
- mpi转以太网连接200plc通信不上实际问题和解决方法
西门子S7200plc通信不上实际问题和解决方法 现场通信的同学在现场调试的时候,现在特别是做项目改造的项目,西门子S7200plc通信面临淘汰,但是在改造的项目中还能经常看到他们的身影,下面我们就来 ...
- 【遥遥领先】Eolink IDEA 插件:零代码入侵,自动生成接口
省流版: Eolink 有 IDEA 插件吗? 有,而且遥遥领先!我们在一年半之前就发布了,而且功能更丰富! IDEA 插件市场搜索"Eolink Apikit"即可安装使用. 使 ...
- code2uml使用教程
通常的开发顺序是 先设计uml然后进行code编程. 但是很多时候我们是先看到code源码,却不知道uml关系如何. 特别是写论文的时候也是很需要的. 这个code2uml,就是辛苦搜寻到的结果,可以 ...