Here's the problem from last year's ACM ICPC Dhaka Regional Preliminary Round.
It says to calculate sod(n) [sum of digits of n] while n >= 10. Here n = a^b, (0<= a,b <= 10^50,000 and a+b>0 ) Any thoughts on how to solve this?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Here's the problem from last year's ACM ICPC Dhaka Regional Preliminary Round.
It says to calculate sod(n) [sum of digits of n] while n >= 10. Here n = a^b, (0<= a,b <= 10^50,000 and a+b>0 ) Any thoughts on how to solve this?
I was trying to solve a problem on LightOJ which says to calculate C(n,r) modulo P where (1<=n,r<=1000000 and P=1000003). It has at most 2000 queries.
I found this solution on the web,but I can not find how it works. can anyone explain it please?
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e6+3;
const int mod=1e6+3;
ll A[N],B[N];
ll bigmod(ll n,ll p)
{
if(p==0)return 1LL;
if(p&1)return ((n%mod)*bigmod(n,p-1))%mod;
ll a=bigmod(n,p/2);
return (a*a)%mod;
}
int main()
{
int tc;
scanf("%d",&tc);
A[1]=B[1]=1;
A[0]=B[0]=1;
for(int i=2;i<N;++i){
A[i]=(A[i-1]*i)%mod;
B[i]=(B[i-1]*bigmod((ll)i,mod-2))%mod;
}
for(int cs=1;cs<=tc;++cs){
int n,r;
scanf("%d%d",&n,&r);
printf("Case %d: %lld\n",cs,(A[n]*((B[n-r]*B[r])%mod))%mod);
}
return 0;
}
Name |
---|