QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#347569#8339. Rooted Treeucup-team1198#AC ✓141ms81804kbC++201.4kb2024-03-09 14:18:012024-03-09 14:18:04

Judging History

你现在查看的是最新测评结果

  • [2024-03-09 14:18:04]
  • 评测
  • 测评结果:AC
  • 用时:141ms
  • 内存:81804kb
  • [2024-03-09 14:18:01]
  • 提交

answer

#include <map>
#include <set>
#include <array>
#include <cmath>
#include <deque>
#include <bitset>
#include <random>
#include <string>
#include <vector>
#include <cassert>
#include <complex>
#include <iomanip>
#include <iostream>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>

using namespace std;

const int MOD = 1e9 + 9;

int add(int a, int b) {
    return a + b >= MOD ? a + b - MOD : a + b;
}

int sub(int a, int b) {
    return a >= b ? a - b : a + MOD - b;
}

int mul(int a, int b) {
    return (1ll * a * b) % MOD;
}

int pw(int x, int n) {
    int res = 1;
    while (n) {
        if (n % 2 == 0) {
            x = mul(x, x);
            n /= 2;
        } else {
            res = mul(res, x);
            --n;
        }
    }
    return res;
}

const int MAXK = 1e7 + 5;
int fact[MAXK], invf[MAXK];


int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int m, k;
    cin >> m >> k;

    fact[0] = 1;
    for (int i = 1; i < MAXK; ++i) {
        fact[i] = mul(fact[i - 1], 1 + (m - 1) * i);
    }
    invf[MAXK - 1] = pw(fact[MAXK - 1], MOD - 2);
    for (int i = MAXK - 1; i > 0; --i) {
        invf[i - 1] = mul(invf[i], 1 + (m - 1) * i);
    }
    int ans = k;
    for (int i = 1; i < k; ++i) {
        ans = add(ans, mul(m, mul(k - i, mul(invf[i], fact[i - 1]))));
    }
    cout << mul(ans, m) << "\n";

    
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 94ms
memory: 81696kb

input:

6 2

output:

18

result:

ok 1 number(s): "18"

Test #2:

score: 0
Accepted
time: 95ms
memory: 81780kb

input:

2 6

output:

600000038

result:

ok 1 number(s): "600000038"

Test #3:

score: 0
Accepted
time: 88ms
memory: 81696kb

input:

83 613210

output:

424200026

result:

ok 1 number(s): "424200026"

Test #4:

score: 0
Accepted
time: 117ms
memory: 81776kb

input:

48 6713156

output:

198541581

result:

ok 1 number(s): "198541581"

Test #5:

score: 0
Accepted
time: 71ms
memory: 81736kb

input:

1 111

output:

6216

result:

ok 1 number(s): "6216"

Test #6:

score: 0
Accepted
time: 121ms
memory: 81756kb

input:

28 7304152

output:

457266679

result:

ok 1 number(s): "457266679"

Test #7:

score: 0
Accepted
time: 109ms
memory: 81752kb

input:

38 4101162

output:

232117382

result:

ok 1 number(s): "232117382"

Test #8:

score: 0
Accepted
time: 141ms
memory: 81736kb

input:

51 9921154

output:

340670552

result:

ok 1 number(s): "340670552"

Test #9:

score: 0
Accepted
time: 116ms
memory: 81692kb

input:

79 1801157

output:

620550406

result:

ok 1 number(s): "620550406"

Test #10:

score: 0
Accepted
time: 120ms
memory: 81752kb

input:

22 5417157

output:

457449071

result:

ok 1 number(s): "457449071"

Test #11:

score: 0
Accepted
time: 98ms
memory: 81736kb

input:

25 3210162

output:

36368303

result:

ok 1 number(s): "36368303"

Test #12:

score: 0
Accepted
time: 123ms
memory: 81696kb

input:

67 2919160

output:

935195555

result:

ok 1 number(s): "935195555"

Test #13:

score: 0
Accepted
time: 135ms
memory: 81688kb

input:

77 8613163

output:

482832472

result:

ok 1 number(s): "482832472"

Test #14:

score: 0
Accepted
time: 139ms
memory: 81800kb

input:

90 10000000

output:

275581651

result:

ok 1 number(s): "275581651"

Test #15:

score: 0
Accepted
time: 141ms
memory: 81804kb

input:

99 9999999

output:

126087169

result:

ok 1 number(s): "126087169"

Test #16:

score: 0
Accepted
time: 137ms
memory: 81732kb

input:

100 10000000

output:

451590067

result:

ok 1 number(s): "451590067"

Extra Test:

score: 0
Extra Test Passed