2015 多校赛 第一场 1001 (hdu 5288)
Description
Input
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
Sample Input
1 2 3 4 5
Sample Output
- #include<iostream>
- #include<cstdio>
- #include<algorithm>
- #include<cstring>
- #include<vector>
- using namespace std;
- const int maxn=,maxx=;
- const long long mod=;
- vector<int>divi[maxn];
- int a[maxx],l[maxx],r[maxx],pos[maxn],n;
- void ini(){
- for(int i=;i<=;i++)
- for(int j=;j<=i;j++)
- if(i%j==) divi[i].push_back(j);
- //预处理出10000内所有数的因子
- }
- int main(){
- ini();
- while(~scanf("%d",&n)){
- for(int i=;i<n;i++)
- scanf("%d",&a[i]);
- memset(l,-,sizeof(l));
- memset(r,0x3f,sizeof(r));
- memset(pos,-,sizeof(pos));
- //l[i]表示a[i]左边与之最接近的它的因子的下标
- for(int i=;i<n;i++){
- int lef=-;
- for(int j=;j<divi[a[i]].size();j++)
- lef=max(lef,pos[divi[a[i]][j]]);
- pos[a[i]]=i;
- //pos数组用于更新维护最靠近a[i]的因子数的下标
- l[i]=lef;
- }
- memset(pos,0x3f,sizeof(pos));
- //r[i]表示a[i]右边与之最接近的它的因子的下标
- for(int i=n-;i>=;i--){
- int rig=0x3f3f3f3f;
- for(int j=;j<divi[a[i]].size();j++)
- rig=min(rig,pos[divi[a[i]][j]]);
- pos[a[i]]=i;
- //pos数组用于更新维护最靠近a[i]的因子数的下标
- r[i]=rig;
- }
- long long ans=,L,R;
- for(int i=;i<n;i++){
- if(l[i]==-) L=i+;
- //若为原值,则说明a[i]左边不存在因子
- else L=i-l[i];
- //否则,令L为a[i]到其因子右边第一个数之间的个数
- if(r[i]==0x3f3f3f3f) R=n-i;
- else R=r[i]-i;
- ans=(L*R%mod+ans)%mod;
- //L*R为包含a[i]的连续区间的组合数。
- }
- printf("%d\n",ans);
- }
- return ;
- }
2015 多校赛 第一场 1001 (hdu 5288)的更多相关文章
- 2015 多校赛 第一场 1007 (hdu 5294)
总算今天静下心来学算法.. Description Innocent Wu follows Dumb Zhang into a ancient tomb. Innocent Wu’s at the e ...
- 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 ...
- hdu 5288||2015多校联合第一场1001题
pid=5288">http://acm.hdu.edu.cn/showproblem.php?pid=5288 Problem Description OO has got a ar ...
- 2015 多校赛 第二场 1006 (hdu 5305)
Problem Description There are n people and m pairs of friends. For every pair of friends, they can c ...
- 2015 多校赛 第二场 1004 hdu(5303)
Problem Description There are n apple trees planted along a cyclic road, which is L metres long. You ...
- 2015 多校赛 第二场 1002 (hdu 5301)
Description Your current task is to make a ground plan for a residential building located in HZXJHS. ...
- HDU6578 2019HDU多校训练赛第一场 1001 (dp)
HDU6578 2019HDU多校训练赛第一场 1001 (dp) 传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6578 题意: 你有n个空需要去填,有 ...
- hdu5294||2015多校联合第一场1007 最短路+最大流
http://acm.hdu.edu.cn/showproblem.php? pid=5294 Problem Description Innocent Wu follows Dumb Zhang i ...
- 2019牛客多校赛第一场 补题 I题
I题 Points Division 题意: 给你n个点,每个点有坐标(xi,yi)和属性(ai,bi),将点集划分为两个集合, 任意 A 集合的点 i 和 B 集合点 j, 不允许 xi > ...
随机推荐
- VHDL之std_logic_1164
This packages defines a standard for designers to use in describing the interconnection data types u ...
- linux挂载ntfs格式的U盘
1.需要安装一个ntfs-3G工具 工具包下载网站:http://www.tuxera.com/community/ntfs-3g-download/ 根据情况选择要下载的包. 2.上传到Linux服 ...
- 【sicily】 1934. 移动小球
Description 你有一些小球,从左到右依次编号为1,2,3,...,n. 你可以执行两种指令(1或者2).其中, 1 X Y表示把小球X移动到小球Y的左边, 2 X Y表示把小球X移动到小球Y ...
- TimerTask定时任务
web.xml <listener> <listener-class>com.sign.listener.NFDFlightDataTaskListener</liste ...
- javaee utf-8文件的转换
package Zy; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.Fil ...
- springMvc学习地址新
http://www.admin10000.com/document/6436.html 一.SpringMVC基础入门,创建一个HelloWorld程序 1.首先,导入SpringMVC需要的jar ...
- Redis-RDB持久化设置
1.如何配置RDB持久化机制redis.conf文件,也就是/etc/redis/6379.conf,去配置持久化 save 60 1000 每隔60s,如果有超过1000个key发生了变更,那么就生 ...
- php第十一节课
增删改查 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3 ...
- PIPE、SIGNAL(day11)
一.管道 管道分为两种: 无名管道 有名管道 无名管道用于具有亲缘关系的进程间通讯.无名管道是单工的. 有内核管理的一块内存空间. 使用管道,系统提供了pipe() #include <unis ...
- OBS直播和相关操作
OBS Studio(Open Broadcaster Software)是一个免费的开源的视频录制和视频实时流软件.其有多种功能并广泛使用在视频采集,直播等领域. https://obsprojec ...