QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#617573 | #8339. Rooted Tree | tieguodundae | TL | 1498ms | 3676kb | C++23 | 738b | 2024-10-06 16:14:38 | 2024-10-06 16:14:38 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5;
#define int long long
int a[N];
int mod=1e9+9;
int qpow(int a,int b){
int res=1;
while(b){
if(b&1)res=res*a%mod;
a=a*a%mod;
b>>=1;
}
return res;
}
void solve() {
int n,k;
cin>>n>>k;
int av;
// cout<<34*qpow(3,mod-2)%mod<<"&\n";
int sum=0,leave=0,siz1=1,siz2=1;
for(int i=1;i<=k;i++){
av=leave*qpow(siz2,mod-2)%mod;
sum=(sum+n*(av+1)%mod)%mod;
leave=(leave+n*(av+1)%mod-av+mod)%mod;
siz1=(siz1+n)%mod;
siz2=(siz2+n-1)%mod;
}
cout<<sum<<"\n";
// cout<<siz1<<" "<<siz2<<"&\n";
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin>>t;
while (t--) {
solve();
}
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3676kb
input:
6 2
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
2 6
output:
600000038
result:
ok 1 number(s): "600000038"
Test #3:
score: 0
Accepted
time: 137ms
memory: 3612kb
input:
83 613210
output:
424200026
result:
ok 1 number(s): "424200026"
Test #4:
score: 0
Accepted
time: 1498ms
memory: 3516kb
input:
48 6713156
output:
198541581
result:
ok 1 number(s): "198541581"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
1 111
output:
6216
result:
ok 1 number(s): "6216"
Test #6:
score: -100
Time Limit Exceeded
input:
28 7304152