QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#347662 | #8339. Rooted Tree | ucup-team346# | AC ✓ | 1101ms | 120896kb | C++14 | 682b | 2024-03-09 14:45:17 | 2024-03-09 14:45:20 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int P = 1e9+9;
using ll = long long;
#define M 10000006
int inv[M];
int Inv(ll x){
if(x<M)return inv[x];
else return 1ll*Inv(P%x)*(P-P/x)%P;
}
void Init(){
inv[0]=inv[1]=1;
for(int i=2;i<M;i++)
inv[i]=1ll*inv[P%i]*(P-P/i)%P;
}
int m,K;
int f[M],g[M];
int main(){
Init();
cin>>m>>K;
f[0]=1,g[0]=1;
int x = 0;
for(int i=1;i<=K;i++){
ll x = 1ll*(m-1)*(i-1) + 1;
int p = 1ll*f[i-1]*Inv(x)%P;
f[i] = (f[i-1] + 1ll*m*(p+1) - p)%P;
g[i] = (g[i-1] + 1ll*m*(p+1))%P;
}
cout<<(g[K] +P-(1ll*m*K%P+1)%P)%P<<endl;
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 58ms
memory: 42652kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 73ms
memory: 42556kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 98ms
memory: 47544kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: 0
Accepted
time: 619ms
memory: 95184kb
input:
48 6713156
output:
198541581
result:
ok 1 number(s): "198541581"
Test #5:
score: 0
Accepted
time: 66ms
memory: 42604kb
input:
1 111
output:
6216
result:
ok 1 number(s): "6216"
Test #6:
score: 0
Accepted
time: 562ms
memory: 99744kb
input:
28 7304152
output:
457266679
result:
ok 1 number(s): "457266679"
Test #7:
score: 0
Accepted
time: 350ms
memory: 74736kb
input:
38 4101162
output:
232117382
result:
ok 1 number(s): "232117382"
Test #8:
score: 0
Accepted
time: 964ms
memory: 120180kb
input:
51 9921154
output:
340670552
result:
ok 1 number(s): "340670552"
Test #9:
score: 0
Accepted
time: 203ms
memory: 56628kb
input:
79 1801157
output:
620550406
result:
ok 1 number(s): "620550406"
Test #10:
score: 0
Accepted
time: 417ms
memory: 85060kb
input:
22 5417157
output:
457449071
result:
ok 1 number(s): "457449071"
Test #11:
score: 0
Accepted
time: 275ms
memory: 67644kb
input:
25 3210162
output:
36368303
result:
ok 1 number(s): "36368303"
Test #12:
score: 0
Accepted
time: 289ms
memory: 65512kb
input:
67 2919160
output:
935195555
result:
ok 1 number(s): "935195555"
Test #13:
score: 0
Accepted
time: 919ms
memory: 109980kb
input:
77 8613163
output:
482832472
result:
ok 1 number(s): "482832472"
Test #14:
score: 0
Accepted
time: 1101ms
memory: 120800kb
input:
90 10000000
output:
275581651
result:
ok 1 number(s): "275581651"
Test #15:
score: 0
Accepted
time: 1068ms
memory: 120788kb
input:
99 9999999
output:
126087169
result:
ok 1 number(s): "126087169"
Test #16:
score: 0
Accepted
time: 1058ms
memory: 120896kb
input:
100 10000000
output:
451590067
result:
ok 1 number(s): "451590067"
Extra Test:
score: 0
Extra Test Passed