标签:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5288
5 1 2 3 4 5
23
题意:
给出n个数,让找到所有的区间内不能整除其它数的数的个数之和 !
PS:
代码如下:
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define maxn 100017 #define LL __int64 const int mod = 1e9+7; LL l[maxn], r[maxn];//存储左边因子,右边因子的位置 LL a[maxn]; int main() { int n; LL pre[maxn], last[maxn]; while(~scanf("%d",&n)) { for(int i = 1; i <= n; i++) { scanf("%I64d",&a[i]); l[i] = 1; r[i] = n;//初始化最左边的因子和最右边的因子都是本身 } memset(pre,0,sizeof(pre)); memset(last,0,sizeof(last)); for(int i = 1; i <= n; i++) { for(int j = a[i]; j <= 10000; j+=a[i])//枚举a[i]的倍数 { if(pre[j]!=0 && r[pre[j]] == n)//如果j已经出现并且在右边最近的因子还没有找到 { r[pre[j]] = i-1; } } pre[a[i]] = i; } for(int i = n; i >= 1; i--) { for(int j = a[i]; j <= 10000; j+=a[i])//枚举a[i]的倍数 { if(last[j]!=0 && l[last[j]] == 1)//如果j已经出现并且在左边最近的因子还没有找到 { l[last[j]] = i+1; } } last[a[i]] = i; } // for(int i=1;i<=n;i++){ // printf("%d %I64d %I64d %I64d\n",i,l[i],r[i],(i-l[i]+1)*(r[i]-i+1)); // } LL ans = 0; for(int i = 1; i <= n; i++) { ans+=((LL)(i-l[i]+1)*(r[i]-i+1))%mod; ans%=mod; } printf("%I64d\n",ans); } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
HDU 5288 OO’s Sequence(数学啊 多校2015)
标签:
原文地址:http://blog.csdn.net/u012860063/article/details/47008889