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
Yes
if 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
Yes
orNo
as 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 京东 课前娱乐 众人皆笑我疯癫,我笑尔 ...
随机推荐
- reg命令详解
reg命令是Windows提供的,它可以添加.更改和显示注册表项中的注册表子项信息和值. 1,reg add 将新的子项或项添加到注册表中 语法:reg add KeyName [/v EntryN ...
- 第二章计算机网络ios 模型
机构: ISO国际标准化组织: ITU国际电信联盟: ANSI 美国国家标准委员会: ECMA欧洲计算机制作商协会 ITEF因特网特别任务组. 协议:为计算机网路中进行数据交换而建立的规则,标准或约定 ...
- uoj279 题目交流通道
题目:告诉你每两个点之间的最短路距离.构造每条边边权<=m的无向完全图.求有多少种不同边权的图满足最短路限制?n<=400. 标程: #include<cstdio> #inc ...
- python中使用xlrd、xlwt操作excel
python 对 excel基本的操作如下: # -*- coding: utf-8 -*- import xlrd import xlwt from datetime import date,dat ...
- Ionic3 demo TallyBook 实例2
1.添加插件 2.相关页面 消费页面: <ion-header> <ion-navbar> <ion-title> 消费记录 </ion-title> ...
- Censoring【自动AC机】【水题毁我青春】【20190614】
这题简直比注水猪肉还水QAQ. 以前做过KMP的Censoring单串匹配,果断选择自动AC机w 对短串建自动AC机 长串去机子里匹配 用个栈边匹配边弹出 记得弹出一个串后把匹配点指向栈顶就ojbk ...
- Java-MyBatis-MyBatis3-XML映射文件:参数
ylbtech-Java-MyBatis-MyBatis3-XML映射文件:参数 1.返回顶部 1. 参数 你之前见到的所有语句中,使用的都是简单参数.实际上参数是 MyBatis 非常强大的元素.对 ...
- Template-Thymeleaf:Thymeleaf
ylbtech-Template-Thymeleaf:Thymeleaf 1.返回顶部 2.返回顶部 3.返回顶部 4.返回顶部 5.返回顶部 0. https://www.thyme ...
- 博弈论 | 暑期集训Day2学习总结
今天的知识点为博弈论. 相比于昨天完全陌生难懂的概念,今天接触到的东西应该算是非常容易理解了,一下子又对ACM的学习重拾信心.毕竟game作为主题也吸引眼球,每种博弈背景下引入的游戏介绍也十分有趣.主 ...
- 解析Request和Response
简介: Web服务器收到客户端的http请求,会针对每一次请求,分别创建一个用于代表请求的request对象.和代表响应的response对象. request和response对象即然代表请求和响应 ...