QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#346368 | #8339. Rooted Tree | ucup-team055# | AC ✓ | 155ms | 81244kb | C++20 | 1.1kb | 2024-03-08 13:53:38 | 2024-03-08 13:53:39 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)
#define all(p) p.begin(),p.end()
using ll =long long;
struct mint{
static constexpr int m = 1'000'000'009;
int x;
mint() : x(0){}
mint(ll x_):x(x_%m){if(x<0) x+=m;}
mint &operator+=(mint b){if((x+=b.x)>=m) x-=m; return *this;}
mint &operator*=(mint b){x=(ll)(x)*b.x%m;return *this;}
mint pow(ll e) const {
mint r=1,b=*this;
while(e){
if(e&1) r*=b;
b*=b;
e>>=1;
}
return r;
}
mint inv(){return pow(m-2);}
friend mint operator+(mint a,mint b){return a+=b;}
friend mint operator*(mint a,mint b){return a*=b;}
};
void solve(){
ll M,K;
cin>>M>>K;
vector<mint> A(K+1,1),B(K+1);
rep(i,0,K) A[i+1]=A[i]*((M-1)*(i+1)+1);
B[K]=A[K].inv();
for(int i=K-1;i>=0;i--) B[i]=B[i+1]*((M-1)*(i+1)+1);
mint P=0,L=0;
rep(i,0,K){
P+=M*(1+L);
L+=A[i]*B[i+1]*M;
}
cout<<P.x<<"\n";
}
int main(){
solve();
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3584kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 7ms
memory: 7928kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: 0
Accepted
time: 106ms
memory: 55572kb
input:
48 6713156
output:
198541581
result:
ok 1 number(s): "198541581"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
1 111
output:
6216
result:
ok 1 number(s): "6216"
Test #6:
score: 0
Accepted
time: 112ms
memory: 60040kb
input:
28 7304152
output:
457266679
result:
ok 1 number(s): "457266679"
Test #7:
score: 0
Accepted
time: 59ms
memory: 35272kb
input:
38 4101162
output:
232117382
result:
ok 1 number(s): "232117382"
Test #8:
score: 0
Accepted
time: 145ms
memory: 80684kb
input:
51 9921154
output:
340670552
result:
ok 1 number(s): "340670552"
Test #9:
score: 0
Accepted
time: 28ms
memory: 17148kb
input:
79 1801157
output:
620550406
result:
ok 1 number(s): "620550406"
Test #10:
score: 0
Accepted
time: 83ms
memory: 45264kb
input:
22 5417157
output:
457449071
result:
ok 1 number(s): "457449071"
Test #11:
score: 0
Accepted
time: 44ms
memory: 28208kb
input:
25 3210162
output:
36368303
result:
ok 1 number(s): "36368303"
Test #12:
score: 0
Accepted
time: 43ms
memory: 26044kb
input:
67 2919160
output:
935195555
result:
ok 1 number(s): "935195555"
Test #13:
score: 0
Accepted
time: 131ms
memory: 70388kb
input:
77 8613163
output:
482832472
result:
ok 1 number(s): "482832472"
Test #14:
score: 0
Accepted
time: 143ms
memory: 81244kb
input:
90 10000000
output:
275581651
result:
ok 1 number(s): "275581651"
Test #15:
score: 0
Accepted
time: 155ms
memory: 81224kb
input:
99 9999999
output:
126087169
result:
ok 1 number(s): "126087169"
Test #16:
score: 0
Accepted
time: 147ms
memory: 81164kb
input:
100 10000000
output:
451590067
result:
ok 1 number(s): "451590067"
Extra Test:
score: 0
Extra Test Passed