码迷,mamicode.com
首页 > 其他好文 > 详细

D. Concatenated Multiples(离线处理)

时间:2019-04-13 16:20:01      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:int   ios   include   bsp   span   ace   map   ons   color   

思路:直接离线处理出每个ai 的10倍, 100倍, 1000倍的mod k 后的数值的个数,使用map<int,int >ss[12]存储, ss[x][y]表示 (ai*10x)%k=y的个数,最后处理一下,自己拼接自己的情况。

#include<iostream>
#include<cmath>
#include<map>
using namespace std;
#define LL long long
const int maxn=2e5+10;
int  n, m, a[maxn];
map<int, int>ma[12];
LL ans;

int main(){
    cin>>n>>m;
    for(int i=1;i<=n;++i){
        cin>>a[i];
        int x=a[i];
        for(int j=1;j<=10;++j){
            x=1LL*x*10%m;   ma[j][x]++;
        }
    }

    for(int i=1;i<=n;++i){
        int x=a[i], l=0;
        while(x>0){++l; x/=10;}
        if(l==0)l=1;
        ans+=ma[l][(m-a[i]%m)%m];
        x=a[i];
        for(int j=1;j<=l;++j)  x=1LL*x*10%m;
        if((x+a[i])%m==0)--ans;
    }
    cout<<ans<<endl;
}

 

D. Concatenated Multiples(离线处理)

标签:int   ios   include   bsp   span   ace   map   ons   color   

原文地址:https://www.cnblogs.com/ALINGMAOMAO/p/10701553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!