Digit sum (第 44 届 ACM/ICPC 亚洲区域赛(上海)网络赛)进制预处理水题

匿名 (未验证) 提交于 2019-12-03 00:08:02
  •  131072K
 

A digit sum S_b(n)Sb(n) is a sum of the base-bb digits of nn. Such as S_{10}(233) = 2 + 3 + 3 = 8   S10(233)=2+3+3=8, S_{2}(8)=1 + 0 + 0 = 1S2(8)=1+0+0=1, S_{2}(7)=1 + 1 + 1 = 3S2(7)=1+1+1=3.

Given NN and bb, you need to calculate \sum_{n=1}^{N} S_b(n)n=1NSb(n).

InputFile

The first line of the input gives the number of test cases, TT. TT test cases follow. Each test case starts with a line containing two integers NN and bb.

1 \leq T \leq 1000001T100000

1 \leq N \leq 10^61N106

2 \leq b \leq 102b10

OutputFile

For each test case, output one line containing Case #x: y, where xx is the test case number (starting from 11) and yyis answer.

样例输入

2 10 10 8 2

样例输出

Case #1: 46 Case 
    for(int i=1;i<=10;i++)     {         a[i][1]=1;     }

      然后在j中,2=1+2,3=1+2+3,就是个累加,得到方程a[i][j]=a[i][j-1]+ac(j,i);ac里获取,i进制的j的各个位数相加。

    

    for(int i=2;i<=10;i++)     {         for(int j=2;j<=maxn;j++)         {             a[i][j]=a[i][j-1]+ac(j,i);         }     }

 

总的代码为::    
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm>  const int maxn=1e6+10;  using namespace std; typedef long long ll; ll a[11][maxn]; int ac(ll n,ll b) {     ll sum=0;     while(n)     {         sum+=n%b;         n=n/b;     }     return sum; } int main() {     for(int i=1;i<=10;i++)     {         a[i][1]=1;     }     for(int i=2;i<=10;i++)     {         for(int j=2;j<=maxn;j++)         {             a[i][j]=a[i][j-1]+ac(j,i);         }     }     ll t;     scanf("%lld",&t);     int ak=1;     while(t--)     {         ll n,b;         scanf("%lld%lld",&n,&b);         printf("Case #%d: %lld\n",ak++,a[b][n]);     } }    

      over!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!