博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
map+pair Bayan 2015 Contest Warm Up D题
阅读量:6084 次
发布时间:2019-06-20

本文共 1611 字,大约阅读时间需要 5 分钟。

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Given a sequence of integers a1, ..., an andq queries x1, ..., xq on it. For each queryxi you have to count the number of pairs(l, r) such that 1 ≤ l ≤ r ≤ n and gcd(al, al + 1, ..., ar) = xi.

is a greatest common divisor ofv1, v2, ..., vn, that is equal to a largest positive integer that divides allvi.

Input

The first line of the input contains integer n, (1 ≤ n ≤ 105), denoting the length of the sequence. The next line containsn space separated integers a1, ..., an, (1 ≤ ai ≤ 109).

The third line of the input contains integer q, (1 ≤ q ≤ 3 × 105), denoting the number of queries. Then followsq lines, each contain an integer xi, (1 ≤ xi ≤ 109).

Output

For each query print the result in a separate line.

Sample test(s)
Input
32 6 3512346
Output
12201
Input
710 20 3 15 1000 60 16101234561020601000
Output
14022202211

题意给你一个序列和q个询问,输出有多少个区间[l,r]满足区间gcd为询问的值。

思路:处理出每一个区间的gcd(要注意合并区间),假设有询问则直接加上去。

#include 
using namespace std;std::map
id;vector
>gcdList;const int MAXN=100000+5;int query[MAXN*3],A[MAXN];long long ans[MAXN*3];int _gcd(int a,int b){return b?_gcd(b,a%b):a;}int ID(int x){ if(!id[x])id[x]=id.size(); return id[x];}int main(int argc, char const *argv[]){ int n; ios_base::sync_with_stdio(false); gcdList.clear();id.clear(); cin>>n; for(int i=1;i<=n;i++)cin>>A[i]; int q;cin>>q; for(int i=1;i<=q;i++){ cin>>query[i]; query[i]=ID(query[i]); } for(int i=1;i<=n;i++){ for(int j=0;j

转载地址:http://ztkwa.baihongyu.com/

你可能感兴趣的文章
bzoj1452 二维树状数组
查看>>
bzoj2561
查看>>
bzoj1093
查看>>
(转)使用vs调试的时候,如何知道程序阻塞在哪里?
查看>>
Linux其他:环境变量配置
查看>>
设置防止攻击session(疑惑)
查看>>
PHP 服务器及TP5框架遇到的几个错误
查看>>
用VMware克隆CentOS 6.5如何进行网络设置
查看>>
redis conf文件详解(转)
查看>>
7月心情
查看>>
jsp jsp九个内置对象
查看>>
PHP(六)PHP和HTML混合的一种形式
查看>>
前端Js框架汇总
查看>>
Cooperation.GTST团队第一周项目总结
查看>>
递归遍历二叉树
查看>>
图标网站收藏
查看>>
jquerymobile changepage 无法加载外部js文件解决办法
查看>>
终结2011,吹响2012的号角
查看>>
mysql 免安装版安装(window7)
查看>>
创建可以销毁的对象代码段
查看>>