Hackerrank--Divisibility of Power(Math)
You are given an array A of size N. You are asked to answer Q queries.
Each query is of the form :
i j x
You need to print
Yesif x divides the value returned from find(i,j) function, otherwise printNo.find(int i,int j)
{
if(i>j) return 1;
ans = pow(A[i],find(i+1,j))
return ans
}
Input Format
First line of the input contains N. Next line contains N space separated numbers. The line, thereafter, contains Q , the number of queries to follow. Each of the next Q lines contains three positive integer i, j and x.
Output Format
For each query display
YesorNoas explained above.Constraints
2≤N≤2×105
2≤Q≤3×105
1≤i,j≤N
i≤j
1≤x≤1016
0≤ value of array element ≤1016No 2 consecutive entries in the array will be zero.
Sample Input
4
2 3 4 5
2
1 2 4
1 3 7
Sample Output
Yes
No
首先,对于每次询问(i,j,x), 如果x中含有a[i]中没有的质因子,那么一定是No
其次,求出需要几个a[i]才能被x整除之后(设为cnt),就需要判断find(i+1, j)和cnt的大小。
对于a[i] = 0 或者 1 的情况可以进行特判,其他情况,因为x不大于1e16,所以可以直接暴力。
Accepted Code:
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
using namespace std;
const int maxn = ;
typedef long long LL;
const int inf = 0x3f3f3f3f;
LL a[maxn], x;
int n, Q, i, j, cnt, near0[maxn], near1[maxn], c[maxn];
bool flag; void init() {
memset(near0, 0x3f, sizeof(near0));
memset(near1, 0x3f, sizeof(near1));
cnt = ;
for (i = ; i <= n; i++) if (a[i] == ) c[cnt++] = i;
int be = ;
for (i = ; i < cnt; i++) {
for (j = be; j < c[i]; j++) near0[j] = c[i];
be = c[i] + ;
}
cnt = ;
for (i = ; i <= n; i++) if (a[i] == ) c[cnt++] = i;
be = ;
for (i = ; i < cnt; i++) {
for (j = be; j < c[i]; j++) near1[j] = c[i];
be = c[i] + ;
}
} void read(LL &res) {
res = ;
char c = ' ';
while (c < '' || c > '') c = getchar();
while (c >= '' && c <= '') res = res * + c - '', c = getchar();
}
void read(int &res) {
res = ;
char c = ' ';
while (c < '' || c > '') c = getchar();
while (c >= '' && c <= '') res = res * + c - '', c = getchar();
} LL gcd(LL a, LL b) {
if (!b) return a;
else return gcd(b, a % b);
} bool ok(int be, int en) {
LL res = ;
for (int i = en; i >= be; i--) {
//if (quick_pow(a[i], res, res)) return true;
LL tmp = ;
for (int j = ; j < res; j++) {
if (tmp >= cnt || a[i] >= cnt) return true;
tmp *= a[i];
}
if (tmp >= cnt) return true;
res = tmp;
}
return res >= cnt;
}
int main(void) {
read(n);
for (i = ; i <= n; i++) read(a[i]);
init();
read(Q);
while (Q--) {
read(i), read(j), read(x);
if (a[i] == ) {
puts("Yes"); continue;
}
if (x == ) {
puts("Yes"); continue;
}
if (a[i] == ) {
puts("No"); continue;
}
if (a[i+] == && j >= i + ) {
puts("No"); continue;
}
cnt = ; flag = true;
while (x != ) {
LL tmp = gcd(x, a[i]);
if (tmp == ) {
flag = false; break;
}
while (x % tmp == ) x /= tmp, ++cnt;
}
if (near0[i] <= j) j = min(j, near0[i] - );
if (near1[i] <= j) j = min(j, near1[i] - );
if (j == i) {
if (!flag || cnt > ) puts("No");
else if (a[i] % x == ) puts("Yes");
else puts("No");
continue;
}
if (!flag || !ok(i+, j)) puts("No");
else puts("Yes");
}
return ;
}
Hackerrank--Divisibility of Power(Math)的更多相关文章
- js入门之内置对象Math
一. 复习数据类型 简单数据类型, 基本数据类型/值类型 Number String Boolean Null Undefined 复杂数据类型 引用类型 Object 数组 数据在内存中是如何存储的 ...
- UTC格式转换 & 十六进制换算为十进制
UTC格式转换成北京时间格式: /// <summary> /// UTC格式与datatime的转换 /// </summary> /// <param name=&q ...
- JS 异常: Uncaught RangeError: Maximum call stack size exceeded
遇到了这个js异常, 总是吧浏览器搞崩溃,这是什么原因呢? 开始我也只能想到死循环, 也许是哪个条件判断写错了,其实不是.经过google,发现了一篇文章,内容请看: ================ ...
- C# 十进制和十六进制转换
转至:http://www.cnblogs.com/fwind/archive/2012/04/13/2445380.html 在C#中,十进制和十六进制转换非常简单,方法如下: 十进制转为十六进制: ...
- NumPy for MATLAB users
http://mathesaurus.sourceforge.net/matlab-numpy.html Help MATLAB/Octave Python Description dochelp - ...
- 构建一个类jq的函数库
jqfree core var $ = function(selector, context) { return new $.fn.init(selector, context); }; $.fn = ...
- ProE常用曲线方程:Python Matplotlib 版本代码(蝴蝶曲线)
花纹的生成可以使用贴图的方式,同样也可以使用方程,本文列出了几种常用曲线的方程式,以取代贴图方式完成特定花纹的生成. 注意极坐标的使用................. 前面部分基础资料,参考:Pyt ...
- Problem 16
Problem 16 pow(2, 15) = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.2的15次方等于32768,而这些数 ...
- javascript基础入门知识点整理
学习目标: - 掌握编程的基本思维 - 掌握编程的基本语法 typora-copy-images-to: media JavaScript基础 HTML和CSS 京东 课前娱乐 众人皆笑我疯癫,我笑尔 ...
随机推荐
- Bootstrap Paginator分页插件(mark)
Bootstrap Paginator分页插件
- openSUSE 安装compass,mkmf.rb can't find,checking for ffi.h...extconf.rb failed
安装compass时,提示 Fetching: sass-.gem (%) Successfully installed sass- Fetching: ffi-.gem (%) Building n ...
- 并发和多线程(四)--wait、notify、notifyAll、sleep、join、yield使用详解
wait.notify.notifyAll 这三个方法都是属于Object的,Java中的类默认继承Object,所以在任何方法中都可以直接调用wait(),notifyAll(),notify(), ...
- Django实现简单的图书管理系统
目录 Django写图书管理系统 功能截图 创建Django项目 开始项目 配置文件 建立路由关系 开始写Django项目 编写核心逻辑函数 写前端页面 add_author.html add_boo ...
- 转:如何成为Linux高手
源地址:http://www.douban.com/note/60936243/ 经过几年的发展,公司在互联网公司里面也算是大公司了,线上机器使用的操作系统都是Linux,部门有几个同事,天天都跟Li ...
- Linux的基本原则
Linux的基本原则:1.由目的单一的小程序组成,一个程序只做一件事,且做好: 2.’组合小程序完成复杂任务: 3.一切皆文件: 4.尽量避免捕获用户接口: 5.配置文件保存为纯文本格式: 6.提供机 ...
- https证书加密
对称加密 浏览器向服务端发送请求时,服务端首先给浏览器发送一个秘钥,浏览器用秘钥对传输的数据进行加密后发送给浏览器,浏览器拿到加密后的数据使用秘钥进行解密 非对称加密 服务端通过rsa算法生成一个公钥 ...
- JAVA缓存的实现
缓存可分为二大类: 一.通过文件缓存,顾名思义文件缓存是指把数据存储在磁盘上,不管你是以XML格式,序列化文件DAT格式还是其它文件格式: 二.内存缓存,也就是实现一个类中静态Map,对这个Map进行 ...
- error C2440 “static_cast” 无法从“void (__thiscall C* )(void)...
1.VC6中,说可以把函数在头文件中定义为:afx_msg void OnProgress()这样 但是在VS2005及以上,要求很严格,必须函数返回值为LRESULT类型,所以在VS2005及以上, ...
- CAS(客户端)程序获取安全证书
以下是获取安全证书的一种方法,通过以下程序获取安全证书: import java.io.BufferedReader; import java.io.File; import java.io.File ...