QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#462604 | #8339. Rooted Tree | zttttt | TL | 1167ms | 117612kb | C++14 | 1.8kb | 2024-07-03 22:00:13 | 2024-07-03 22:00:13 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=5e7+10,M=1e9+9;
int ny[N],dp[N],zt[N],maxx,f[N];
int ksm(int a,int b,int c){
// int b1=b;
zt[1]=a%c;
int cnt=1;
int ans=1;
while(b){
if(b&1){
//cnt++;
ans*=zt[cnt];
ans%=c;
}
cnt++;
zt[cnt]=zt[cnt-1]*zt[cnt-1]%c;
b>>=1;
}
// cnt=0;
// while(b){
// cnt++;
// if(b&1){
// //cnt++;
// ans*=zt[cnt];
// ans%=c;
// }
// b>>=1;
// }
return ans;
}
signed main(){
int m,k;
cin>>m>>k;
f[0]=1;
for(int i=1;i<=k;i++){
f[i]=f[i-1]-1+m;
}
//for(int i=1;i<=k;i++)cout<<f[i]<<endl;
// if(f[k]>10000000)maxx=10000000;
// else maxx=f[k];
dp[0]=0;
// ny[1]=1;
// for(int i=m;i<=f[k];i+=m-1){
// cout<<i<<" "<<M%i<<" "<<ny[M%i]<<endl;
// ny[i]=(M-M/i)*ny[M%i]%M;
// }
for(int i=1;i<=k;i++){
// if(f[i]<=1e7){
//cout<<M%f[i]<<endl;
//if(f[i]<=50000000){
// if(M%f[i]<=50000000&&ny[M%f[i]]){
// ny[f[i]]=(M-M/f[i])*ny[M%f[i]]%M;
// }else{
// ny[f[i]]=ksm(f[i],M-2,M);
// }
// dp[i]=((dp[i-1]*f[i-1])%M*ny[f[i]]%M-(dp[i-1]*ny[f[i]]%M)+M)%M+m*dp[i-1]%M*ny[f[i]]%M+m*ny[f[i]]%M;
// dp[i]%=M;
//}else{
// int zqx;
// if(M%f[i]<=50000000&&ny[M%f[i]]){
// zqx=(M-M/f[i])*ny[M%f[i]]%M;
// }else{
// zqx=ksm(f[i],M-2,M);
// }
int zqx=ksm(f[i],M-2,M);
dp[i]=((dp[i-1]*f[i-1])%M*zqx%M-(dp[i-1]*zqx%M)+M)%M+m*dp[i-1]%M*zqx%M+m*zqx%M;
dp[i]%=M;
//}
//cout<<i<<" "<<dp[i]<<endl;
// }else{
// int zqx=ksm(f[i],M-2,M);
// dp[i]=((dp[i-1]*f[i-1])%M*zqx%M-(dp[i-1]*zqx%M)+M)%M+m*dp[i-1]%M*zqx%M+m*zqx%M;
// dp[i]%=M;
// }
}
//for(int i=1;i<=k;i++)cout<<dp[i]<<endl;
int ans1=dp[k]*f[k]%M;
for(int i=1;i<k;i++){
ans1=ans1+dp[i]%M;
ans1%=M;
}
cout<<ans1<<endl;
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3640kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3532kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 96ms
memory: 13112kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: 0
Accepted
time: 1102ms
memory: 108380kb
input:
48 6713156
output:
198541581
result:
ok 1 number(s): "198541581"
Test #5:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
1 111
output:
6216
result:
ok 1 number(s): "6216"
Test #6:
score: 0
Accepted
time: 1167ms
memory: 117612kb
input:
28 7304152
output:
457266679
result:
ok 1 number(s): "457266679"
Test #7:
score: 0
Accepted
time: 671ms
memory: 67612kb
input:
38 4101162
output:
232117382
result:
ok 1 number(s): "232117382"
Test #8:
score: -100
Time Limit Exceeded
input:
51 9921154