hdu6053

题意

给出 \(A\) 数组,问有多少种 \(B\) 数组满足下面条件。

  • \(1≤ B_i ≤ A_i\)
  • For each pair \(( l , r ) \ (1≤l≤r≤n) , gcd(b_l,b_{l+1}...b_r) ≥ 2\) 。

分析

首先肯定要去枚举 \(gcd\) ,如果暴力去计算,对于每个 \(gcd\) ,我们都要乘 \(n\) 次,这样显然会超时。考虑一种将区间分块的思想,如果 \(gcd\) 为 \(10\) ,那么区间 \([20, 30)\) 里的数除以 \(10\) 都是 \(2\) ,当 \(gcd\) 越大时,区间越大。我们直接统计下前缀和,可以查询某个区间里包含的数的个数,快速幂计算答案。

最后求得的 \(dp[i]\) 表示 \(gcd=i\) 时,构成的 \(B\) 数组的个数,可以用容斥去处理得到最后的答案。

code

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
using namespace std;
typedef long long ll;
const int MAXN = 1e5 + 10;
const int N = 1e5 + 5;
const ll MOD = 1e9 + 7;
int kase = 1;
int T;
ll POW(ll x, int n) {
ll res = 1;
while(n) {
if(n & 1) res = res * x % MOD;
x = x * x % MOD;
n >>= 1;
}
return res;
}
int sum[MAXN];
ll dp[MAXN];
int main() {
scanf("%d", &T);
while(T--) {
memset(sum, 0, sizeof sum);
memset(dp, 0, sizeof dp);
int n;
scanf("%d", &n);
int mn = N;
for(int i = 0; i < n; i++) {
int x;
scanf("%d", &x);
mn = min(mn, x);
sum[x]++;
}
for(int i = 1; i <= N; i++) {
sum[i] += sum[i - 1];
}
for(int i = 2; i <= mn; i++) {
ll c = 0;
dp[i] = 1;
for(int j = i; j <= N; j += i) {
c++;
int x;
if(j + i - 1 > N) x = sum[N] - sum[j - 1];
else x = sum[j + i - 1] - sum[j - 1];
if(x == 0) continue;
dp[i] = (dp[i] * POW(c, x)) % MOD;
}
}
for(int i = N; i >= 2; i--) {
for(int j = 2 * i; j <= N; j += i) {
dp[i] = (dp[i] - dp[j] + MOD) % MOD;
}
}
ll ans = 0;
for(int i = 0; i <= N; i++) {
ans = (ans + dp[i]) % MOD;
}
printf("Case #%d: %lld\n", kase++, ans);
}
return 0;
}

hdu6053的更多相关文章

  1. hdu6053 TrickGCD 容斥原理

    /** 题目:hdu6053 TrickGCD 链接:http://acm.hdu.edu.cn/showproblem.php?pid=6053 题意:You are given an array ...

  2. HDU-6053 TrickGCD

    题目连接: https://vjudge.net/problem/HDU-6053 Description You are given an array A , and Zhu wants to kn ...

  3. [Hdu-6053] TrickGCD[容斥,前缀和]

    Online Judge:Hdu6053 Label:容斥,前缀和 题面: 题目描述 给你一个长度为\(N\)的序列A,现在让你构造一个长度同样为\(N\)的序列B,并满足如下条件,问有多少种方案数? ...

  4. hdu6053(莫比乌斯+容斥+分块)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=6053 题意: 给出一个含 n 个元素的 a 数组, 求 bi <= ai 且 gcd(b1, ...

  5. Codeforces #428 Div2 D

    #428 Div2 D 题意 给出一些数,现在要求找出一些数满足 \(i_1 < i_2 < i_3 < ... < i_k\) 以及 \(gcd(a_{i_1}, a_{i_ ...

  6. Codeforces 803F - Coprime Subsequences(数论)

    原题链接:http://codeforces.com/contest/803/problem/F 题意:若gcd(a1, a2, a3,...,an)=1则认为这n个数是互质的.求集合a中,元素互质的 ...

随机推荐

  1. Python全栈工程师(每周总结:2)

     ParisGabriel   感谢 大家的支持                                                               每天坚持 一天一篇 点个订 ...

  2. (整)Unreal渲染模块 框总览

    @author: 黑袍小道 随缘查看     说明 由于搬山的渲染这部分担心自己理解错误,故而搬移官方下,后面整个完成再反过来更新 (这当且仅当做Unreal的帮助文档).     图形编程 模块 渲 ...

  3. packstack测试环境安装heat

    虚机all in one环境测试安装heat [root@armstrong ~]# tmux at -t mysql MariaDB [(none)]> CREATE DATABASE hea ...

  4. Android 程序怎么打log

    常见的做法: 1. 定义一个常量(变量)作为是否输出log的flag: 2. 定义一个常量(变量)作为log级别设定: 2. 调试.打包时,按需要调整常量的值,从而控制log打印. 常见代码参考: h ...

  5. 1024Studio官网

    一.开发背景 在工作室成立之后,一直就想为工作室建设一个网站,这次乘着暑假有足够的空余时间,开始着手建设我们1024studio的官方网站. 二.系统设计 1.系统目标 根据网上查找的相关资料以及与工 ...

  6. shell之dialog提示窗口

    dialog 提示窗口 1.msgbox     dialog --msgbox text 20 10 2.yesno     dialog --title "Please answer&q ...

  7. Spring Cloud Config 搭建Config 服务

    配置中心: open API 配置生效监控 一致性的K-V存储 统一配置的实时推送 配置全局恢复.备份.历史版本 高可用集群 通过config 获取配置,流程: 下面介绍,基于spring cloud ...

  8. group_load,weight_load,group_capacity, group_weight大致都是啥数值

    [ 113.180820] sgs->group_load:2039,sum_nr_running:2,sum_weighted_load:2039,sgs->group_capacity ...

  9. NSOperation 开发

    目录 1.简介 2.Operation对象 3.自定义Operation对象 4.通过Operation Queues运行Operation对象 5.手动运行Operation对象 一.简介 Coco ...

  10. asp.net 条码 一维条码 生成, 一共有32中格式类型

    想用asp.net 实现条码功能,网上找了代码都不全. 终于找到了一个非常全的DLL 是winForm的,原以为不能用在WEB 上结果 可以使用. 首先,引用 DLL 不必说了,下面是 使用设置.还有 ...