[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几乎都用到网络,因此,网络监测也成为了较为重点的知识,下面我给大家简单讲解一下网络监测的实际应用,依旧会有代码哦. 想要实现网络监测,可 ...
随机推荐
- 使用阿里云ECS和RDS搭建个人博客
一.ECS实例配置 1.重置云服务器ECS密码 前往ECS控制台,点击实例,找到刚才开通的ECS实例(找不到的话就看一下上方的地区是否是你的服务器的地域),点击右侧操作栏中的三个点,找到重置实例密码, ...
- TDD、BDD、ATDD都是什么、有什么区别?(上)
软件开发是一个迭代过程,包括编写.测试和改进代码,直到满足需求.测试驱动开发(TDD).行为驱动开发(BDD)和验收测试驱动开发(ATDD)是支持该过程的三种方法.TDD.BDD和ATDD都是软件开发 ...
- 【升职加薪秘籍】我在服务监控方面的实践(8)-elasticsearch 性能监控与分析手段
大家好,我是蓝胖子,之前讲了mysql,redis中间件的监控,今天我们再来看看另一个基础组件elasticsearch,如何对它进行监控,当你思考如何对一个组件进行监控时,四大黄金指标会告诉你答案, ...
- C++的编译链接与在vs中build提速
通过gcc或msvc,clang等编译器编译出来的C++源文件是.o文件.在windows上也就是PE文件,linux为ELF文件,在这一步中,调用其它代码文件中的函数的函数地址是未知的(00000) ...
- 微信小程序隐私保护协议修改方法 uniapp
微信隐私保护协议指南 一天天没事闲的 01 在manifest.json 中添加一行 "__usePrivacyCheck__" : false 02 自定义一个弹窗组件 ...
- pentaho(keetle)使用手册
pentaho使用 先展示一下用途和效果 1. 环境准备 1.1 pentaho是什么? pentaho可读作"彭塔湖",原名keetle 在keetle被pentaho公司收购后 ...
- [最佳实践]配置sshd只允许sftp登录
sftp 是 Secure File Transfer Protocol 的缩写,即安全文件传送协议,可为传输文件提供一种安全的加密方法. sftp 为 SSH 的一部分,由于这种传输方式使用了加密/ ...
- 04-Shell字符串变量
1. 字符串变量的三种方式 字符串(String)就是一系列字符的组合.字符串是 Shell 编程中最常用的数据类型之一(除了数字和字符串,也没有其他类型了) 单引号方式 双引号方式, 推荐 不用引号 ...
- C++中const和constexpr的多文件链接问题
C++语言支持分离编译,在多文件编程中:变量或函数可以被声明多次,但却只能被定义一次.如果要在多个文件中使用同一个变量,变量的定义能且只能出现在一个文件中,在其他使用该变量的文件中需要声明该变量.如果 ...
- Unity - UIWidgets 4. 添加图标显示
Material Icon字体下载(github) 前面的返回按钮, 以及自己试验的一些Icon都不显示, 然后回去翻UIWidgets的README public class UIWidgetsEx ...