CGCDSSQ

这道题很妙啊。其实我们可以发现重要的不是起点和终点,重要的是个数,然后脑洞一下,可以递推。(我什么都没有想出来)假设我们已经知道了前面所有子串的gcd,那么我们可以用现在的a[i]和前面每个数求gcd,这样就把加入这个新元素的串的所有情况都枚举了一遍,因为gcd的数量很少,所以很快。枚举是存在一个新的map里,枚举完了以后,和老的map交换,因为我们只用上一次所有串,也就是必须用上一个字符,所以只用存上一次的情况就好了,然后把这次每个gcd的数量加进答案。(这里也许可以不用一个单独的map,挖)

复制代码
#include<iostream>
#include<vector>
#include<map>
#include<cstdio>
#define Mp make_pair
using namespace std;
typedef pair<int,int> pii;
map<int,int>mp;
map<int,int>nextmp;
map<int,long long>ans;
int a[100010];
int gcd(int a,int b)
{
    return b==0?a:gcd(b,a%b);
}
int main()
{
    int n,q; scanf("%d",&n);
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i]);
    }    
    for(int i=1;i<=n;i++)
    {
        nextmp.clear();
        for(map<int,int>::iterator it=mp.begin();it!=mp.end();it++)
        {
            int temp1=a[i],temp2=it->first;
            if(temp1<temp2) swap(temp1,temp2);
            nextmp[gcd(temp1,temp2)]+=it->second;
        }
        nextmp[a[i]]++;
        swap(mp,nextmp);
        for(map<int,int>::iterator it=mp.begin();it!=mp.end();it++)
        {
            ans[it->first]+=it->second;
        }
    }
    scanf("%d",&q);
    for(int i=1;i<=q;i++)
    {
        int x; scanf("%d",&x);
        printf("%I64d\n",ans[x]);
    }
    return 0;
}
复制代码

 

posted @   19992147  阅读(284)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
· 为什么 .NET8线程池 容易引发线程饥饿
阅读排行:
· 一个适用于 .NET 的开源整洁架构项目模板
· API 风格选对了,文档写好了,项目就成功了一半!
· 【开源】C#上位机必备高效数据转换助手
· .NET 9.0 使用 Vulkan API 编写跨平台图形应用
· MyBatis中的 10 个宝藏技巧!
点击右上角即可分享
微信分享提示