QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#462647 | #8339. Rooted Tree | castc | TL | 1482ms | 117740kb | C++20 | 951b | 2024-07-03 23:04:28 | 2024-07-03 23:04:28 |
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(b1){
cnt++;
zt[cnt]=zt[cnt-1]*zt[cnt-1]%c;
b1>>=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;
}
dp[0]=0;
ny[1]=1;
for(int i=1;i<=k;i++){
int zqx=ksm(f[i],M-2,M);
dp[i] = (dp[i - 1] * (f[i - 1] - 1 + m) % M + m) * zqx;
dp[i]%=M;
}
int ans1=dp[k]*f[k]%M;
for(int i=1;i<k;i++){
ans1+=dp[i];
ans1%=M;
}
cout<<ans1<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3476kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 121ms
memory: 13116kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: 0
Accepted
time: 1340ms
memory: 108560kb
input:
48 6713156
output:
198541581
result:
ok 1 number(s): "198541581"
Test #5:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
1 111
output:
6216
result:
ok 1 number(s): "6216"
Test #6:
score: 0
Accepted
time: 1482ms
memory: 117740kb
input:
28 7304152
output:
457266679
result:
ok 1 number(s): "457266679"
Test #7:
score: 0
Accepted
time: 832ms
memory: 67568kb
input:
38 4101162
output:
232117382
result:
ok 1 number(s): "232117382"
Test #8:
score: -100
Time Limit Exceeded
input:
51 9921154