QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#667593#8339. Rooted TreetilennTL 1111ms31836kbC++143.3kb2024-10-23 00:26:382024-10-23 00:26:40

Judging History

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

  • [2024-10-23 00:26:40]
  • 评测
  • 测评结果:TL
  • 用时:1111ms
  • 内存:31836kb
  • [2024-10-23 00:26:38]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

#define endl '\n'
typedef long long LL;

template<class T>
T qmi(T a,LL k){
    T res = 1;
    while(k){
        if(k & 1)res *= a;
        a *= a;
        k >>= 1;
    }
    return res;
}

struct MInt{
    int v;
    const static int Mod;
    MInt() : v() {}
    MInt(LL _v) : v(norm(_v % Mod)) {}
    static int getMod(){
        return Mod;
    }
    int norm(int x) const {
        if(x < 0){
            x += Mod;
        }else if(x >= Mod){
            x -= Mod;
        }
        return x;
    }
    int val() const {return v;}
    MInt operator-() const {
        MInt res;
        res.v = norm(Mod - v);
        return res;
    }
    MInt inv() const {
        return qmi(*this,Mod - 2);
    }
    MInt &operator*=(MInt rhs) & {
        v = 1LL * v * rhs.v % Mod;
        return *this;
    }
    MInt &operator+=(MInt rhs) & {
        v = norm(v + rhs.v);
        return *this;
    }
    MInt &operator-=(MInt rhs) & {
        v = norm(v - rhs.v);
        return *this;
    }
    MInt &operator/=(MInt rhs) & {
        return *this *= rhs.inv();
    }
    friend MInt operator*(MInt lhs, MInt rhs) {
        return 1LL * lhs.val() * rhs.val();
    }
    friend MInt operator+(MInt lhs, MInt rhs) {
        return lhs.val() + rhs.val();
    }
    friend MInt operator-(MInt lhs, MInt rhs) {
        return lhs.val() - rhs.val();
    }
    friend MInt operator/(MInt lhs, MInt rhs) {
        return 1LL * lhs.val() * rhs.inv().val();
    }
    friend std::istream &operator>>(std::istream &is, MInt &a) {
        LL v;
        is >> v;
        a = MInt(v);
        return is;
    }
    friend std::ostream &operator<<(std::ostream &os, const MInt &a) {
        return os << a.val();
    }
    friend bool operator<(MInt lhs,MInt rhs) {
        return lhs.val() < rhs.val();
    }
    friend bool operator==(MInt lhs, MInt rhs) {
        return lhs.val() == rhs.val();
    }
    friend bool operator!=(MInt lhs, MInt rhs) {
        return lhs.val() != rhs.val();
    }
};
const int MInt::Mod = 1e9 + 9;
using Z = MInt;

Z getinv(Z x){
    Z res = 1;

    res *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    x *= x;
    x *= x;
    x *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;
    res *= x;
    x *= x;

    return res;
}

void solve(){
    int m,k;
    cin >> m >> k;
    vector<Z> dp(k + 1);
    Z res = 0;
    for(int i = 1;i <= k;i++){
        Z inv = getinv(1LL + (i - 1) * (m - 1));
        res += dp[i - 1] * inv;
        dp[i] = dp[i - 1] - (dp[i - 1] * inv) + (dp[i - 1] * inv + 1) * m;
    }
    res += dp[k];
    cout << res << endl; 
    //1,m,2m - 1,3m - 2,4m - 3... km + k - 1
}   

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL),cout.tie(NULL);
    int t = 1;
    //cin >> t;
    while(t--){
        solve();
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3772kb

input:

6 2

output:

18

result:

ok 1 number(s): "18"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3608kb

input:

2 6

output:

600000038

result:

ok 1 number(s): "600000038"

Test #3:

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

input:

83 613210

output:

424200026

result:

ok 1 number(s): "424200026"

Test #4:

score: 0
Accepted
time: 1025ms
memory: 29268kb

input:

48 6713156

output:

198541581

result:

ok 1 number(s): "198541581"

Test #5:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

1 111

output:

6216

result:

ok 1 number(s): "6216"

Test #6:

score: 0
Accepted
time: 1111ms
memory: 31836kb

input:

28 7304152

output:

457266679

result:

ok 1 number(s): "457266679"

Test #7:

score: 0
Accepted
time: 623ms
memory: 19280kb

input:

38 4101162

output:

232117382

result:

ok 1 number(s): "232117382"

Test #8:

score: -100
Time Limit Exceeded

input:

51 9921154

output:

340670552

result: