QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#227836#5532. KangarooCamillus51 735ms80260kbC++202.7kb2023-10-28 00:43:002023-10-28 00:43:00

Judging History

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

  • [2023-10-28 00:43:00]
  • 评测
  • 测评结果:51
  • 用时:735ms
  • 内存:80260kb
  • [2023-10-28 00:43:00]
  • 提交

answer

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

struct mint {
    static constexpr int mod = 1'000'000'007;
    int value = 0;

    mint() = default;
    mint(int value) : value(value) {}
};

mint operator+(const mint &A, const mint &B) {
    int value = A.value + B.value;
    if (value >= mint::mod) {
        value -= mint::mod;
    }
    return mint(value);
}

mint operator-(const mint &A, const mint &B) {
    int value = A.value + mint::mod - B.value;
    if (value >= mint::mod) {
        value -= mint::mod;
    }
    return mint(value);
}

mint operator*(const mint &A, const mint &B) {
    return mint(1ll * A.value * B.value % mint::mod);
}

mint recA(int l, int i, int j);
mint recB(int l, int i, int j);

map<tuple<int, int, int>, mint> savedA;

mint recA(int l, int i, int j) {
    if (i > j) {
        if (l % 2 == 0) {
            return recB(l, j, i);
        } else {
            return recA(l, j, i);
        }
    }

    if (savedA.contains(tuple(l, i, j))) {
        return savedA[tuple(l, i, j)];
    }
    
    if (l == 1) {
        if (i == 0 && j == 0) {
            return 1;
        } else {
            return 0;
        }
    }
    
    if (i == j) {
        return 0;
    }

    if (i == 0) {
        mint res = 0;
        if (l % 2 == 0) {
            for (int k = i + 1; k < l; k++) {
                res = res + recB(l - 1, k - 1, j - 1);
            }
        } else {
            for (int k = i + 1; k < l; k++) {
                res = res + recA(l - 1, j - 1, k - 1);
            }
        }
        return savedA[tuple(l, i, j)] = res;
    }

    return savedA[tuple(l, i, j)] = recA(l, i - 1, j) - recB(l - 1, i - 1, j - 1);
}

map<tuple<int, int, int>, mint> savedB;

mint recB(int l, int i, int j) {
    if (i > j) {
        if (l % 2 == 0) {
            return recA(l, j, i);
        } else {
            return recB(l, j, i);
        }
    }

    if (savedB.contains(tuple(l, i, j))) {
        return savedB[tuple(l, i, j)];
    }

    if (l == 1) {
        if (i == 0 && j == 0) {
            return 1;
        } else {
            return 0;
        }
    }
    
    if (i == j) {
        return 0;
    }

    if (i == 0) {
        return savedB[tuple(l, i, j)] = 0;
    }

    return savedB[tuple(l, i, j)] = recB(l, i - 1, j) + recA(l - 1, i - 1, j - 1);
}

signed main() {
#ifndef LOCAL
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
#else
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif

    int n, s, f;
    cin >> n >> s >> f;
    s--, f--;

    cout << (recA(n, s, f) + recB(n, s, f)).value << '\n';
    return 0;
}

詳細信息

Subtask #1:

score: 6
Accepted

Test #1:

score: 6
Accepted
time: 0ms
memory: 3684kb

input:

7 3 6

output:

14

result:

ok 1 number(s): "14"

Subtask #2:

score: 30
Accepted

Dependency #1:

100%
Accepted

Test #2:

score: 30
Accepted
time: 2ms
memory: 3844kb

input:

39 36 32

output:

964903316

result:

ok 1 number(s): "964903316"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

26 1 26

output:

955348527

result:

ok 1 number(s): "955348527"

Test #4:

score: 0
Accepted
time: 0ms
memory: 3896kb

input:

40 11 33

output:

695661890

result:

ok 1 number(s): "695661890"

Test #5:

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

input:

39 39 38

output:

717149364

result:

ok 1 number(s): "717149364"

Test #6:

score: 0
Accepted
time: 3ms
memory: 4144kb

input:

40 10 25

output:

912929610

result:

ok 1 number(s): "912929610"

Test #7:

score: 0
Accepted
time: 3ms
memory: 4016kb

input:

37 25 23

output:

250748685

result:

ok 1 number(s): "250748685"

Test #8:

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

input:

39 2 38

output:

624060592

result:

ok 1 number(s): "624060592"

Test #9:

score: 0
Accepted
time: 4ms
memory: 4216kb

input:

40 18 22

output:

739993796

result:

ok 1 number(s): "739993796"

Test #10:

score: 0
Accepted
time: 2ms
memory: 3916kb

input:

40 11 35


output:

135213497

result:

ok 1 number(s): "135213497"

Subtask #3:

score: 15
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Test #11:

score: 15
Accepted
time: 669ms
memory: 74720kb

input:

199 100 70

output:

914653136

result:

ok 1 number(s): "914653136"

Test #12:

score: 0
Accepted
time: 666ms
memory: 69532kb

input:

187 3 40

output:

928785584

result:

ok 1 number(s): "928785584"

Test #13:

score: 0
Accepted
time: 15ms
memory: 7308kb

input:

199 198 197

output:

38412688

result:

ok 1 number(s): "38412688"

Test #14:

score: 0
Accepted
time: 476ms
memory: 58748kb

input:

200 40 140

output:

367088143

result:

ok 1 number(s): "367088143"

Test #15:

score: 0
Accepted
time: 640ms
memory: 71096kb

input:

199 111 3

output:

870834793

result:

ok 1 number(s): "870834793"

Test #16:

score: 0
Accepted
time: 529ms
memory: 62536kb

input:

200 133 73

output:

343127012

result:

ok 1 number(s): "343127012"

Test #17:

score: 0
Accepted
time: 105ms
memory: 18752kb

input:

178 15 163

output:

160852284

result:

ok 1 number(s): "160852284"

Test #18:

score: 0
Accepted
time: 696ms
memory: 77164kb

input:

197 43 79

output:

332057544

result:

ok 1 number(s): "332057544"

Test #19:

score: 0
Accepted
time: 735ms
memory: 80260kb

input:

200 33 79

output:

742545318

result:

ok 1 number(s): "742545318"

Subtask #4:

score: 0
Time Limit Exceeded

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #20:

score: 0
Time Limit Exceeded

input:

658 169 438

output:


result: