Description

OO has got a array A of size n ,defined a function f(l,r) represent the number of i (l<=i<=r) , that there's no j(l<=j<=r,j<>i) satisfy a imod a j=0,now OO want to know [∑i=1n ∑j=i n f(i,j) ] mod (10^9+7)
 

Input

There are multiple test cases. Please process till EOF. 
In each test case: 
First line: an integer n(n<=10^5) indicating the size of array 
Second line:contain n numbers a i(0<a i<=10000) 
 

Output

For each tests: ouput a line contain a number ans.
 

Sample Input

5
1 2 3 4 5
 

Sample Output

23
 
题意:给出长度为n的数列,设函数f(i,j)表示,在a[i]到a[j]中,其中i<=ti<=j,满足a[ti]%a[tj]!=0的ti的个数,其中tj为不等于ti的任意 i 到 j 中的数。
求出 [∑i=1n ∑j=i n f(i,j) ] mod (10^9+7)。
 
思路:对于数列中的每一个数,求出其被所有可行区间包含的次数。
 
代码与注释如下。
  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<cstring>
  5. #include<vector>
  6. using namespace std;
  7. const int maxn=,maxx=;
  8. const long long mod=;
  9. vector<int>divi[maxn];
  10. int a[maxx],l[maxx],r[maxx],pos[maxn],n;
  11. void ini(){
  12. for(int i=;i<=;i++)
  13. for(int j=;j<=i;j++)
  14. if(i%j==) divi[i].push_back(j);
  15. //预处理出10000内所有数的因子
  16. }
  17. int main(){
  18. ini();
  19. while(~scanf("%d",&n)){
  20. for(int i=;i<n;i++)
  21. scanf("%d",&a[i]);
  22. memset(l,-,sizeof(l));
  23. memset(r,0x3f,sizeof(r));
  24. memset(pos,-,sizeof(pos));
  25. //l[i]表示a[i]左边与之最接近的它的因子的下标
  26. for(int i=;i<n;i++){
  27. int lef=-;
  28. for(int j=;j<divi[a[i]].size();j++)
  29. lef=max(lef,pos[divi[a[i]][j]]);
  30. pos[a[i]]=i;
  31. //pos数组用于更新维护最靠近a[i]的因子数的下标
  32. l[i]=lef;
  33. }
  34. memset(pos,0x3f,sizeof(pos));
  35. //r[i]表示a[i]右边与之最接近的它的因子的下标
  36. for(int i=n-;i>=;i--){
  37. int rig=0x3f3f3f3f;
  38. for(int j=;j<divi[a[i]].size();j++)
  39. rig=min(rig,pos[divi[a[i]][j]]);
  40. pos[a[i]]=i;
  41. //pos数组用于更新维护最靠近a[i]的因子数的下标
  42. r[i]=rig;
  43. }
  44. long long ans=,L,R;
  45. for(int i=;i<n;i++){
  46. if(l[i]==-) L=i+;
  47. //若为原值,则说明a[i]左边不存在因子
  48. else L=i-l[i];
  49. //否则,令L为a[i]到其因子右边第一个数之间的个数
  50. if(r[i]==0x3f3f3f3f) R=n-i;
  51. else R=r[i]-i;
  52. ans=(L*R%mod+ans)%mod;
  53. //L*R为包含a[i]的连续区间的组合数。
  54. }
  55. printf("%d\n",ans);
  56. }
  57. return ;
  58. }
 

2015 多校赛 第一场 1001 (hdu 5288)的更多相关文章

  1. 2015 多校赛 第一场 1007 (hdu 5294)

    总算今天静下心来学算法.. Description Innocent Wu follows Dumb Zhang into a ancient tomb. Innocent Wu’s at the e ...

  2. 2015 多校赛 第一场 1002 (hdu 5289)

    Description Tom owns a company and he is the boss. There are n staffs which are numbered from 1 to n ...

  3. hdu 5288||2015多校联合第一场1001题

    pid=5288">http://acm.hdu.edu.cn/showproblem.php?pid=5288 Problem Description OO has got a ar ...

  4. 2015 多校赛 第二场 1006 (hdu 5305)

    Problem Description There are n people and m pairs of friends. For every pair of friends, they can c ...

  5. 2015 多校赛 第二场 1004 hdu(5303)

    Problem Description There are n apple trees planted along a cyclic road, which is L metres long. You ...

  6. 2015 多校赛 第二场 1002 (hdu 5301)

    Description Your current task is to make a ground plan for a residential building located in HZXJHS. ...

  7. HDU6578 2019HDU多校训练赛第一场 1001 (dp)

    HDU6578 2019HDU多校训练赛第一场 1001 (dp) 传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6578 题意: 你有n个空需要去填,有 ...

  8. hdu5294||2015多校联合第一场1007 最短路+最大流

    http://acm.hdu.edu.cn/showproblem.php? pid=5294 Problem Description Innocent Wu follows Dumb Zhang i ...

  9. 2019牛客多校赛第一场 补题 I题

    I题  Points Division 题意: 给你n个点,每个点有坐标(xi,yi)和属性(ai,bi),将点集划分为两个集合, 任意 A 集合的点 i 和 B 集合点 j, 不允许 xi > ...

随机推荐

  1. VHDL之std_logic_1164

    This packages defines a standard for designers to use in describing the interconnection data types u ...

  2. linux挂载ntfs格式的U盘

    1.需要安装一个ntfs-3G工具 工具包下载网站:http://www.tuxera.com/community/ntfs-3g-download/ 根据情况选择要下载的包. 2.上传到Linux服 ...

  3. 【sicily】 1934. 移动小球

    Description 你有一些小球,从左到右依次编号为1,2,3,...,n. 你可以执行两种指令(1或者2).其中, 1 X Y表示把小球X移动到小球Y的左边, 2 X Y表示把小球X移动到小球Y ...

  4. TimerTask定时任务

    web.xml <listener> <listener-class>com.sign.listener.NFDFlightDataTaskListener</liste ...

  5. javaee utf-8文件的转换

    package Zy; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.Fil ...

  6. springMvc学习地址新

    http://www.admin10000.com/document/6436.html 一.SpringMVC基础入门,创建一个HelloWorld程序 1.首先,导入SpringMVC需要的jar ...

  7. Redis-RDB持久化设置

    1.如何配置RDB持久化机制redis.conf文件,也就是/etc/redis/6379.conf,去配置持久化 save 60 1000 每隔60s,如果有超过1000个key发生了变更,那么就生 ...

  8. php第十一节课

    增删改查 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3 ...

  9. PIPE、SIGNAL(day11)

    一.管道 管道分为两种: 无名管道 有名管道 无名管道用于具有亲缘关系的进程间通讯.无名管道是单工的. 有内核管理的一块内存空间. 使用管道,系统提供了pipe() #include <unis ...

  10. OBS直播和相关操作

    OBS Studio(Open Broadcaster Software)是一个免费的开源的视频录制和视频实时流软件.其有多种功能并广泛使用在视频采集,直播等领域. https://obsprojec ...