QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#462646 | #8339. Rooted Tree | castc | TL | 141ms | 19212kb | C++20 | 784b | 2024-07-03 23:03:37 | 2024-07-03 23:03:38 |
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 n, int p) {
int ans = 1;
while(n) {
if(n & 1) {
ans = ans % p * a % p;
}
a = a % p * a % p;
n >>= 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: 7772kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 1ms
memory: 7704kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 141ms
memory: 19212kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: -100
Time Limit Exceeded
input:
48 6713156
output:
198541581