QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#252358#7754. Rolling For Daysucup-team1453#AC ✓165ms54744kbC++112.7kb2023-11-15 18:46:282023-11-15 18:46:28

Judging History

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

  • [2023-11-15 18:46:28]
  • 评测
  • 测评结果:AC
  • 用时:165ms
  • 内存:54744kb
  • [2023-11-15 18:46:28]
  • 提交

answer

#include<bits/stdc++.h>
#define L(i, j, k) for(int i = (j); i <= (k); ++i)
#define R(i, j, k) for(int i = (j); i >= (k); --i)
#define ll long long
#define vi vector <int>
#define sz(a) ((int) (a).size())
#define me(f, x) memset(f, x, sizeof(f))
#define uint unsig7ned int
#define ull unsigned long long 
#define i128 __int128
using namespace std;
const int N = 5000, mod = 998244353;
int qpow(int x, int y = mod - 2) {
	int res = 1;
	for(; y; x = (ll) x * x % mod, y >>= 1) if(y & 1) res = (ll) res * x % mod;
	return res;
}
int fac[N], ifac[N], inv[N];
void init(int x) {
	fac[0] = ifac[0] = inv[1] = 1;
	L(i, 2, x) inv[i] = (ll) (mod - mod / i) * inv[mod % i] % mod;
	L(i, 1, x) fac[i] = (ll) fac[i - 1] * i % mod, ifac[i] = (ll) ifac[i - 1] * inv[i] % mod;
} 
int C(int x, int y) {
	return x < y || y < 0 ? 0 : (ll) fac[x] * ifac[y] % mod * ifac[x - y] % mod;
}
inline int sgn(int x) {
	return (x & 1) ? mod - 1 : 1;
}

int n, m;
int a[N];
int b[N];

int f[N][N];
int g[N][N];
mt19937_64 orz(time(0) ^ *new int);
int main() {
	ios :: sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	cin >> n >> m;
	L(i, 0, m - 1) {
		cin >> a[i];
	}
	L(i, 0, m - 1) {
		cin >> b[i];
	}
//	n = 0;
//	m = orz() % 10 + 1;
//	L(i, 0, m - 1) 
//		a[i] = orz() % 10 + 1, b[i] = orz() % a[i], 
//		n += a[i];
	
	int sumc = 0;
	L(i, 0, m - 1) {
		sumc += b[i];
	}
	ll sum = 0;
	L(i, 0, m - 1) 
		sum += a[i];
	if(sum != n) while(true);
	L(i, 0, m - 1) if(a[i] < b[i]) while(true); 
	
	init(4097);
	int mul = 1;
	L(i, 0, sumc - 1) {
		mul = (ll) mul * inv[n - i] % mod;
	}
	L(i, 0, m - 1) {
		L(j, 0, b[i] - 1) {
			mul = (ll) mul * (a[i] - j) % mod;
		}
	}
	
	int dm = 0;
	L(i, 0, m - 1) 
		if(b[i] == 0)
			dm |= 1 << i;
	
	f[dm][0] = mul;
	g[dm][0] = 0;
	L(sub, 0, (1 << m) - 1) {
		int sumb = 0, qwq = 0;
		L(i, 0, m - 1) 
			if(sub >> i & 1) 
				sumb += b[i], qwq += a[i] - b[i];
		L(i, sumb, sumc - 1) {
			int kn = n - i;
			assert(kn - qwq > 0);
			int prob = (ll) kn * inv[kn - qwq] % mod;
			int sg = (ll) prob * prob % mod;
			
			(f[sub][i + 1] += (ll) f[sub][i] * prob % mod) %= mod;
			(g[sub][i + 1] += (ll) g[sub][i] * prob % mod) %= mod;
			(g[sub][i + 1] += (ll) f[sub][i] * sg % mod) %= mod;
			
			L(p, 0, m - 1) if(!(sub >> p & 1)) {
				int c = C(i - sumb, b[p] - 1);
				(f[sub + (1 << p)][i + 1] += (ll) c * f[sub][i] % mod * prob % mod) %= mod;
				(g[sub + (1 << p)][i + 1] += (ll) c * g[sub][i] % mod * prob % mod) %= mod;
				(g[sub + (1 << p)][i + 1] += (ll) c * f[sub][i] % mod * sg % mod) %= mod;
			}
		}
	}
	assert(f[(1 << m) - 1][sumc] == 1);
	cout << g[(1 << m) - 1][sumc] << '\n';
	return 0;
}

/*
1000 12
101 43 34 281 23 24 12 25 66 222 145 24
37 43 27 257 5 11 12 19 62 41 87 0
*/

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2 2
1 1
1 1

output:

2

result:

ok answer is '2'

Test #2:

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

input:

4 2
2 2
2 1

output:

582309210

result:

ok answer is '582309210'

Test #3:

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

input:

5 5
1 1 1 1 1
0 0 0 0 1

output:

5

result:

ok answer is '5'

Test #4:

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

input:

4 4
1 1 1 1
1 1 1 0

output:

831870299

result:

ok answer is '831870299'

Test #5:

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

input:

5 2
4 1
2 1

output:

598946616

result:

ok answer is '598946616'

Test #6:

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

input:

5 2
3 2
3 1

output:

482484776

result:

ok answer is '482484776'

Test #7:

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

input:

5 5
1 1 1 1 1
0 1 1 1 0

output:

665496242

result:

ok answer is '665496242'

Test #8:

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

input:

3 3
1 1 1
1 1 0

output:

499122180

result:

ok answer is '499122180'

Test #9:

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

input:

5 5
1 1 1 1 1
1 0 1 1 1

output:

582309212

result:

ok answer is '582309212'

Test #10:

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

input:

3 2
2 1
2 0

output:

499122180

result:

ok answer is '499122180'

Test #11:

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

input:

20 5
1 6 7 2 4
0 1 3 1 4

output:

75028873

result:

ok answer is '75028873'

Test #12:

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

input:

15 5
4 2 3 4 2
2 1 1 2 1

output:

585494868

result:

ok answer is '585494868'

Test #13:

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

input:

20 4
5 4 3 8
1 2 2 3

output:

156108321

result:

ok answer is '156108321'

Test #14:

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

input:

15 2
6 9
2 8

output:

672033760

result:

ok answer is '672033760'

Test #15:

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

input:

20 12
1 2 1 1 2 4 1 3 2 1 1 1
1 0 0 1 0 0 1 0 2 0 1 1

output:

691640771

result:

ok answer is '691640771'

Test #16:

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

input:

19 12
1 1 1 2 1 2 2 1 2 4 1 1
1 1 0 1 1 0 1 1 0 2 1 0

output:

777326448

result:

ok answer is '777326448'

Test #17:

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

input:

20 2
19 1
1 1

output:

299473325

result:

ok answer is '299473325'

Test #18:

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

input:

19 2
14 5
10 1

output:

497380388

result:

ok answer is '497380388'

Test #19:

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

input:

100 5
10 25 6 19 40
0 2 4 5 11

output:

773338801

result:

ok answer is '773338801'

Test #20:

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

input:

64 5
1 12 13 33 5
1 0 1 20 0

output:

571823997

result:

ok answer is '571823997'

Test #21:

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

input:

100 4
15 38 24 23
0 20 0 1

output:

635309463

result:

ok answer is '635309463'

Test #22:

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

input:

88 5
15 25 9 19 20
8 15 9 18 17

output:

400310961

result:

ok answer is '400310961'

Test #23:

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

input:

100 12
2 2 13 9 13 7 2 1 6 15 17 13
0 0 5 7 10 7 0 1 0 0 4 4

output:

552732942

result:

ok answer is '552732942'

Test #24:

score: 0
Accepted
time: 12ms
memory: 40364kb

input:

59 12
7 6 3 5 4 6 5 2 5 6 5 5
4 5 2 5 3 6 0 2 1 0 3 3

output:

27023521

result:

ok answer is '27023521'

Test #25:

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

input:

100 3
10 60 30
0 28 21

output:

261595276

result:

ok answer is '261595276'

Test #26:

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

input:

84 2
39 45
4 23

output:

897695217

result:

ok answer is '897695217'

Test #27:

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

input:

1000 5
370 136 129 182 183
312 47 112 22 119

output:

705415872

result:

ok answer is '705415872'

Test #28:

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

input:

766 5
372 194 98 90 12
165 123 53 27 0

output:

870555094

result:

ok answer is '870555094'

Test #29:

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

input:

1000 2
374 626
175 591

output:

501708945

result:

ok answer is '501708945'

Test #30:

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

input:

701 1
701
413

output:

413

result:

ok answer is '413'

Test #31:

score: 0
Accepted
time: 165ms
memory: 52716kb

input:

1000 12
101 43 34 281 23 24 12 25 66 222 145 24
37 43 27 257 5 11 12 19 62 41 87 13

output:

265294941

result:

ok answer is '265294941'

Test #32:

score: 0
Accepted
time: 67ms
memory: 42988kb

input:

942 12
83 142 96 10 3 10 60 93 398 13 11 23
37 56 36 0 3 0 10 35 33 1 9 19

output:

956409637

result:

ok answer is '956409637'

Test #33:

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

input:

1000 4
473 65 438 24
79 61 327 24

output:

491224221

result:

ok answer is '491224221'

Test #34:

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

input:

870 4
320 17 182 351
145 0 181 4

output:

664946681

result:

ok answer is '664946681'

Test #35:

score: 0
Accepted
time: 127ms
memory: 48464kb

input:

1000 12
102 2 110 62 106 176 37 27 6 208 92 72
57 0 106 20 36 4 20 12 3 134 8 61

output:

3888811

result:

ok answer is '3888811'

Test #36:

score: 0
Accepted
time: 132ms
memory: 51012kb

input:

1000 12
1 44 209 187 27 71 127 139 134 22 20 19
0 19 153 113 27 29 82 74 37 19 20 9

output:

278584590

result:

ok answer is '278584590'

Test #37:

score: 0
Accepted
time: 87ms
memory: 47804kb

input:

1000 12
193 84 261 36 75 7 70 12 38 22 8 194
68 15 11 20 16 7 53 1 6 6 6 189

output:

704313398

result:

ok answer is '704313398'

Test #38:

score: 0
Accepted
time: 159ms
memory: 54744kb

input:

1000 12
171 135 21 74 115 3 4 122 32 70 224 29
71 120 20 66 61 2 1 102 28 0 201 3

output:

608268027

result:

ok answer is '608268027'

Test #39:

score: 0
Accepted
time: 146ms
memory: 51436kb

input:

1000 12
54 20 201 182 16 66 23 153 36 39 151 59
33 5 189 80 13 56 13 38 7 22 92 21

output:

795531860

result:

ok answer is '795531860'

Test #40:

score: 0
Accepted
time: 129ms
memory: 52708kb

input:

1000 12
218 16 12 152 67 64 65 3 90 263 44 6
107 2 2 143 11 28 53 2 55 106 39 5

output:

903827471

result:

ok answer is '903827471'

Extra Test:

score: 0
Extra Test Passed