We are given 3 numbers: a,s and b, each varying in the range between 1 and 1000000. We need to find pow(a,s)%b. Obviously, we can not use the simple pow function because we could not generate big number such as 10000001000000. This is the solution of the problem:
sol=1
for(int i=0;i<s;i++)
{
sol = sol * a;
sol = sol % b;
}
print sol
I don't understand this algorithm. Can someone explain it to me?
P.S. Where can I find more algorithms for solving non-trivialc math problems such as this one? Cheers!
First of all, the algorithm you wrote is not at all optimized, since it's linear in s, while you can easily write a log(s) one, as you can read here.
That said, there isn't much to explain: you just have to know that
and that
and it immediately follows that your algorithm computes the result in the naive way.