Reading comprehension
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 384 Accepted Submission(s): 185
Problem Description
Read the program below carefully then answer the question.
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include
#include
#include
#include
#include
#include
const int MAX=100000*2;
const int INF=1e9;
int main()
{
int n,m,ans,i;
while(scanf("%d%d",&n,&m)!=EOF)
{
ans=0;
for(i=1;i<=n;i++)
{
if(i&1)ans=(ans*2+1)%m;
else ans=ans*2%m;
}
printf("%d
",ans);
}
return 0;
}
Input
Multi test cases,each line will contain two integers n and m. Process to end of file.
[Technical Specification]
1<=n, m <= 1000000000
Output
For each case,output an integer,represents the output of above program.
Sample Input
1 10
3 100
Sample Output
1
5
Source
BestCoder Round #8
Recommend
heyang | We have carefully selected several similar problems for you: 4992 4988 4987 4984 4983
打个表,递推公式 a[n]=a[n-1]+2*a[n-2]+1
建立矩阵 [a[n-1],a[n-2],1]*[1,1,0]
[2,0,0]
[1,0,1]
【a[2],a[1],1】* 后面矩阵的 n-2次幂 n=1,2的时候特判就行
注意爆int
#define DeBUG
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
推公式,公式看程序就懂了,两个等比数列其实 关键求(4^dm -1)/3 %mod
利用公式a/b%m = a%(b*m)/b注意这时候再取模是%(b*m)快速幂的时候得变了,因为这个逗B了。。。
#define DeBUG
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include