QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#460250#5532. KangarooCiriya666100 ✓6ms24156kbC++17977b2024-07-01 12:21:032024-07-01 12:21:05

Judging History

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

  • [2024-07-01 12:21:05]
  • 评测
  • 测评结果:100
  • 用时:6ms
  • 内存:24156kb
  • [2024-07-01 12:21:03]
  • 提交

answer

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iomanip>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <vector>
using namespace std;
#define int long long
#define all(x) begin(x), end(x)
#define sz(x) (int) (x).size()

const int mod = 1e9+7;
const int mxn = 2e3+5;

int n, cs, cf, dp[mxn][mxn];


signed main() {
	scanf("%lld%lld%lld",&n,&cs,&cf);
	dp[1][1]=1;
	for (int i=2; i<=n; i++) {
		for (int j=1; j<=i; j++) {
			if (i==cs || i==cf) {
				dp[i][j] = (dp[i-1][j-1] + dp[i-1][j])%mod;
			} else {
				int ptk = (i>cs) + (i>cf);
				int ip = j-ptk;
				dp[i][j] = (dp[i-1][j-1]*ip + dp[i-1][j+1]*j)%mod;
			}
		}
	}
	printf("%lld",dp[n][1]);
}

详细

Subtask #1:

score: 6
Accepted

Test #1:

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

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: 0ms
memory: 1556kb

input:

39 36 32

output:

964903316

result:

ok 1 number(s): "964903316"

Test #3:

score: 30
Accepted
time: 0ms
memory: 1656kb

input:

26 1 26

output:

955348527

result:

ok 1 number(s): "955348527"

Test #4:

score: 30
Accepted
time: 0ms
memory: 1696kb

input:

40 11 33

output:

695661890

result:

ok 1 number(s): "695661890"

Test #5:

score: 30
Accepted
time: 0ms
memory: 1708kb

input:

39 39 38

output:

717149364

result:

ok 1 number(s): "717149364"

Test #6:

score: 30
Accepted
time: 0ms
memory: 1676kb

input:

40 10 25

output:

912929610

result:

ok 1 number(s): "912929610"

Test #7:

score: 30
Accepted
time: 0ms
memory: 1680kb

input:

37 25 23

output:

250748685

result:

ok 1 number(s): "250748685"

Test #8:

score: 30
Accepted
time: 0ms
memory: 1700kb

input:

39 2 38

output:

624060592

result:

ok 1 number(s): "624060592"

Test #9:

score: 30
Accepted
time: 0ms
memory: 1724kb

input:

40 18 22

output:

739993796

result:

ok 1 number(s): "739993796"

Test #10:

score: 30
Accepted
time: 0ms
memory: 1560kb

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: 0ms
memory: 2476kb

input:

199 100 70

output:

914653136

result:

ok 1 number(s): "914653136"

Test #12:

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

input:

187 3 40

output:

928785584

result:

ok 1 number(s): "928785584"

Test #13:

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

input:

199 198 197

output:

38412688

result:

ok 1 number(s): "38412688"

Test #14:

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

input:

200 40 140

output:

367088143

result:

ok 1 number(s): "367088143"

Test #15:

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

input:

199 111 3

output:

870834793

result:

ok 1 number(s): "870834793"

Test #16:

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

input:

200 133 73

output:

343127012

result:

ok 1 number(s): "343127012"

Test #17:

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

input:

178 15 163

output:

160852284

result:

ok 1 number(s): "160852284"

Test #18:

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

input:

197 43 79

output:

332057544

result:

ok 1 number(s): "332057544"

Test #19:

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

input:

200 33 79

output:

742545318

result:

ok 1 number(s): "742545318"

Subtask #4:

score: 49
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #20:

score: 49
Accepted
time: 0ms
memory: 5836kb

input:

658 169 438

output:

206087110

result:

ok 1 number(s): "206087110"

Test #21:

score: 49
Accepted
time: 0ms
memory: 6112kb

input:

700 207 509

output:

478311263

result:

ok 1 number(s): "478311263"

Test #22:

score: 49
Accepted
time: 0ms
memory: 6796kb

input:

755 139 507

output:

103783948

result:

ok 1 number(s): "103783948"

Test #23:

score: 49
Accepted
time: 4ms
memory: 24144kb

input:

2000 500 1500

output:

123410309

result:

ok 1 number(s): "123410309"

Test #24:

score: 49
Accepted
time: 6ms
memory: 24148kb

input:

2000 1000 1001

output:

956197482

result:

ok 1 number(s): "956197482"

Test #25:

score: 49
Accepted
time: 0ms
memory: 24156kb

input:

2000 666 1333

output:

993781645

result:

ok 1 number(s): "993781645"

Test #26:

score: 49
Accepted
time: 4ms
memory: 24036kb

input:

1991 198 677

output:

155058730

result:

ok 1 number(s): "155058730"

Test #27:

score: 49
Accepted
time: 0ms
memory: 16268kb

input:

1498 299 659

output:

665757882

result:

ok 1 number(s): "665757882"