-1

不知道为什么我gettion编译错误

prog.cpp: In function 'long long int modInverse(long long int, long long int)':
prog.cpp:46: error: 'extendedEuclid' was not declared in this scope

#include<stdio.h>
#include<utility>
#include<algorithm>
using namespace std;
#define MOD 1000000007
#define LL long long
LL factorial[2000005];
LL pow(LL a, LL b, LL mod) {
    LL x = 1, y = a;
    while(b > 0) {
        if(b%2 == 1) {
            x=(x*y);
            if(x>mod) x%=mod;
        }
        y = (y*y);
        if(y>mod) y%=mod;
            b /= 2;
    }
    return x;
}


LL modInverse(LL a, LL m) {
    return (extendedEuclid(a,m).second.first + m) % m;
}



pair<LL, pair<LL, LL> > extendedEuclid(LL a, LL b) {
    if(a == 0) return make_pair(b, make_pair(0, 1));
    pair<LL, pair<LL, LL> > p;
    p = extendedEuclid(b % a, a);
    return make_pair(p.first, make_pair(p.second.second - p.second.first*(b/a), p.second.first));
}


int main()
{

int t,a,b,n,i;
factorial[1]=1;
for (i=2;i<=2000001;i++)
    factorial[i]=(factorial[i-1]*i)%(MOD-1);
scanf("%d",&t);
while(t--)
{
    scanf("%d%d%d",&a,&b,&n);
    LL nCr=((factorial[2*n]%(MOD-1))*(modInverse(factorial[n],(MOD-1))))%(MOD-1);
    nCr=((nCr%(MOD-1))*(modInverse(factorial[n],(MOD-1))))%(MOD-1);
    LL nCr_pow_c=pow(nCr,b,MOD-1);
    LL a_pow_nCr_pow_c=pow(a,nCr_pow_c,MOD);
    printf("%lld\n",a_pow_nCr_pow_c);
}
return 0;
 }
4

3 回答 3

3

也许是因为extendedEuclid 还没有定义?

您必须在调用它之前添加它的原型。

添加pair<LL, pair<LL, LL> > extendedEuclid(LL a, LL b);到您的文件顶部,它会工作;)

于 2013-07-30T14:22:31.190 回答
2

放置函数声明:-pair<LL, pair<LL, LL> > extendedEuclid(LL , LL );

LL modInverse(LL a, LL m) {
return (extendedEuclid(a,m).second.first + m) % m;
} 
于 2013-07-30T14:23:16.600 回答
0

您正在尝试extendedEuclid在它首次出现之前使用它。要修复它,您可以将modInverse功能移到后面pair<LL, pair<LL, LL> > extendedEuclid(LL a, LL b)。或者,只需pair<LL, pair<LL, LL> > extendedEuclid(LL a, LL b);在文件前面的声明中添加声明。

另外,我建议您遵循一本好的 C++ 教程或某种书籍,包括编码风格。你的代码表明你已经养成了许多可能来自于杂乱无章的学习的坏习惯。

于 2013-07-30T14:28:07.497 回答