1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| #include<bits/stdc++.h> using namespace std;
void read(int &x) { x=0;int f=1;char ch=getchar(); for(;!isdigit(ch);ch=getchar()) if(ch=='-') f=-f; for(;isdigit(ch);ch=getchar()) x=x*10+ch-'0';x*=f; }
void print(int x) { if(x<0) putchar('-'),x=-x; if(!x) return ;print(x/10),putchar(x%10+48); } void write(int x) {if(!x) putchar('0');else print(x);putchar('\n');}
#define lf double #define ll long long
#define pii pair<int,int > #define vec vector<int >
#define pb push_back #define mp make_pair #define fr first #define sc second
#define FOR(i,l,r) for(int i=l,i##_r=r;i<=i##_r;i++)
const int maxn = 1e6+10; const int inf = 1e9; const lf eps = 1e-8; const int mod = 19491001;
int qpow(int a,int x) { int res=1; for(;x;x>>=1,a=1ll*a*a%mod) if(x&1) res=1ll*res*a%mod; return res; }
int n,k,d,fac[maxn],ifac[maxn];
void gen() { fac[0]=ifac[0]=1; for(int i=1;i<=k;i++) fac[i]=1ll*fac[i-1]*i%mod; ifac[k]=qpow(fac[k],mod-2); for(int i=k-1;i;i--) ifac[i]=1ll*ifac[i+1]*(i+1)%mod; }
int c(int a,int b) {return 1ll*fac[a]*ifac[b]%mod*ifac[a-b]%mod;}
int main() { read(n),read(k),read(d);gen(); if(d==1) write(qpow(k,n)); else if(d==2) { int ans=0; for(int i=0;i<=k;i++) ans=(ans+1ll*c(k,i)*qpow(2*i-k,n)%mod)%mod; ans=(1ll*ans*qpow(qpow(2,k),mod-2)%mod+mod)%mod; write(ans); } else { int ans=0,a=qpow(7,(mod-1)/3); for(int i=0;i<=k;i++) { int res=0; for(int j=0;j<=i;j++) { int t=(1ll*(i-j)*a%mod+j)%mod; t=(t+1ll*(k-i)*a%mod*a%mod)%mod; res=(res+1ll*c(i,j)*qpow(t,n)%mod)%mod; } ans=(ans+1ll*c(k,i)*res%mod)%mod; }write(1ll*ans*qpow(qpow(3,k),mod-2)%mod); } return 0; }
|