poj1995-Raising Modulo (快速幂)

梦里梦外; 2022-08-04 10:50 205阅读 0赞

Raising Modulo Numbers














Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 5499   Accepted: 3184

Description

People are different. Some secretly read magazines full of interesting girls’ pictures, others create an A-bomb in their cellar, others like using Windows, and some like difficult mathematical games. Latest marketing research shows, that this market segment was so far underestimated and that there is lack of such games. This kind of game was thus included into the KOKODáKH. The rules follow:

Each player chooses two numbers Ai and Bi and writes them on a slip of paper. Others cannot see the numbers. In a given moment all players show their numbers to the others. The goal is to determine the sum of all expressions Ai Bi from all players including oneself and determine the remainder after division by a given number M. The winner is the one who first determines the correct result. According to the players’ experience it is possible to increase the difficulty by choosing higher numbers.

You should write a program that calculates the result and is able to find out who won the game.

Input

The input consists of Z assignments. The number of them is given by the single positive integer Z appearing on the first line of input. Then the assignements follow. Each assignement begins with line containing an integer M (1 <= M <= 45000). The sum will be divided by this number. Next line contains number of players H (1 <= H <= 45000). Next exactly H lines follow. On each line, there are exactly two numbers Ai and Bi separated by space. Both numbers cannot be equal zero at the same time.

Output

For each assingnement there is the only one line of output. On this line, there is a number, the result of expression

(A1B1+A2B2+ … +AHBH)mod M.

Sample Input

  1. 3
  2. 16
  3. 4
  4. 2 3
  5. 3 4
  6. 4 5
  7. 5 6
  8. 36123
  9. 1
  10. 2374859 3029382
  11. 17
  12. 1
  13. 3 18132

Sample Output

  1. 2
  2. 13195
  3. 13

这题主要是应用了快速幂,不知道的可以看下:

写下快速幂的代码:

  1. long long quick_pow(int a,int b,int m)
  2. {
  3. long long c=1;
  4. while(b)
  5. {
  6. if(b&1)
  7. c=c*a%m;
  8. a=a*a%m;
  9. b/=2;
  10. }
  11. return c%m;
  12. }

下面是ac代码:

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. using namespace std;
  5. int main()
  6. {
  7. long long N,i,n,M,c,a,b,sum;
  8. scanf("%lld",&N);
  9. while(N--)
  10. {
  11. scanf("%lld%lld",&M,&n);
  12. sum=0;
  13. for(i=0;i<n;i++)
  14. {
  15. c=1;
  16. scanf("%lld%lld",&a,&b);
  17. while(b)
  18. {
  19. if(b&1)
  20. c=c*a%M;
  21. a=a*a%M;
  22. b/=2;
  23. }
  24. sum=sum+c%M;
  25. }
  26. printf("%lld\n",sum%M);
  27. }
  28. return 0;
  29. }

发表评论

表情:
评论列表 (有 0 条评论,205人围观)

还没有评论,来说两句吧...

相关阅读