三 G - Problem G

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
3
16
4
2 3
3 4
4 5
5 6
36123
1
2374859 3029382
17
1
3 18132
Sample Output
2
13195
13
问题链接:https://vjudge.net/contest/276592#problem/G
问题简述:求(a1b1+a2b2+......+an^bn)%m
问题分析:数据过大,要用快速幂
程序说明:快速幂取余
AC通过的C++程序如下:

include<iostream>

using namespace std;
int main()
{
long long t, m,time, sum, a, b;
cin >> t;
for (int i = 0; i < t; i++)
{
cin >> m >> time;
sum = 0;
for (int j = 0; j < time; j++)
{
cin >> a >> b;
long long ans = 1;
while (b != 0)
{
if (b & 1 != 0)
{
ans=ansa%m;
}
a=a
a%m;
b >>= 1;
}
sum+=ans%m;
}
if (sum > m)
{
sum = sum % m;
}
cout << sum << endl;

    }
return 0;

}

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,448评论 0 10
  • 哭泣的雨 打湿街泥 泥泞了心情 勾起思绪 剪不断的雨线 穿起记忆 看不见的雨幕 覆盖了结局 那份情怀 萦绕着 整个...
    琢玉书生阅读 332评论 2 20
  • 柔软的疼痛 我要学摄影
    一一空阅读 202评论 0 0
  • 起风的时候 树的旋舞 惊起鸟的欢快 急疾 遁走 穿越林间的喜悦 如丝线 串起叶的波涌 深青浅绿 杏黄香槟 美不胜收...
    SharonZhou阅读 279评论 0 1
  • 出现这种情况的原因有两种情况: 调试https安全链接的时候没有安卓charles提供的证书。请参考(需翻墙)进行...
    ysnows阅读 8,155评论 3 3