Submission #2402455


Source Code Expand

#include <iostream>
using namespace std;

long long N, A, B, C, dp[5009][5009], fact[5009], factinv[5009], mod = 1000000007;

long long modpow(long long a, long long b, long long m) {
	long long p = 1, q = a;
	for (int i = 0; i < 30; i++) {
		if ((b / (1 << i)) % 2 == 1) { p *= q; p %= m; }
		q *= q; q %= m;
	}
	return p;
}
long long Div(long long a, long long b, long long m) {
	return (a*modpow(b, m - 2, m)) % m;
}
void init() {
	fact[0] = 1; for (int i = 1; i <= 5000; i++) fact[i] = (fact[i - 1] * i) % mod;
	for (int i = 0; i <= 5000; i++) factinv[i] = Div(1, fact[i], mod);

	dp[0][0] = 1;
	for (int i = 1; i <= 5000; i++) {
		for (int j = 0; j <= 5000; j++) dp[i][j] += dp[i - 1][j];
		for (int j = 1; j <= 5000; j++) { dp[i][j] += dp[i][j - 1]; dp[i][j] %= mod; }
	}
}

int main() {
	init();
	cin >> N >> A >> B >> C;
	if (B % 2 == 1) { cout << "0" << endl; return 0; }
	long long sum = 0;
	for (int i = 0; i <= A; i++) {
		for (int j = 0; j <= C; j++) {
			long long a = i, b = (A - i), c = j, d = B / 2, n = (C - b - 3 * c);
			if (a < 0 || b < 0 || c < 0 || d < 0 || n < 0) continue;
			long long X = fact[a + b + c + d];
			X *= factinv[a]; X %= mod;
			X *= factinv[b]; X %= mod;
			X *= factinv[c]; X %= mod;
			X *= factinv[d]; X %= mod;
			X *= dp[d][n]; X %= mod;
			sum += X; sum %= mod;
		}
	}
	cout << sum << endl;
	return 0;
}

Submission Info

Submission Time
Task J - 123 Pairs
User E869120
Language C++14 (GCC 5.4.1)
Score 1500
Code Size 1397 Byte
Status AC
Exec Time 529 ms
Memory 195968 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1500 / 1500
Status
AC × 2
AC × 52
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, 039.txt, 040.txt, 041.txt, 042.txt, 043.txt, 044.txt, 045.txt, 046.txt, 047.txt, 048.txt, 049.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 487 ms 195968 KB
001.txt AC 448 ms 195968 KB
002.txt AC 448 ms 195968 KB
003.txt AC 448 ms 195968 KB
004.txt AC 448 ms 195968 KB
005.txt AC 448 ms 195968 KB
006.txt AC 448 ms 195968 KB
007.txt AC 450 ms 195968 KB
008.txt AC 448 ms 195968 KB
009.txt AC 448 ms 195968 KB
010.txt AC 448 ms 195968 KB
011.txt AC 448 ms 195968 KB
012.txt AC 448 ms 195968 KB
013.txt AC 448 ms 195968 KB
014.txt AC 448 ms 195968 KB
015.txt AC 511 ms 195968 KB
016.txt AC 452 ms 195968 KB
017.txt AC 465 ms 195968 KB
018.txt AC 451 ms 195968 KB
019.txt AC 468 ms 195968 KB
020.txt AC 455 ms 195968 KB
021.txt AC 502 ms 195968 KB
022.txt AC 454 ms 195968 KB
023.txt AC 460 ms 195968 KB
024.txt AC 503 ms 195968 KB
025.txt AC 458 ms 195968 KB
026.txt AC 481 ms 195968 KB
027.txt AC 500 ms 195968 KB
028.txt AC 468 ms 195968 KB
029.txt AC 473 ms 195968 KB
030.txt AC 499 ms 195968 KB
031.txt AC 504 ms 195968 KB
032.txt AC 453 ms 195968 KB
033.txt AC 448 ms 195968 KB
034.txt AC 468 ms 195968 KB
035.txt AC 477 ms 195968 KB
036.txt AC 453 ms 195968 KB
037.txt AC 448 ms 195968 KB
038.txt AC 529 ms 195968 KB
039.txt AC 448 ms 195968 KB
040.txt AC 448 ms 195968 KB
041.txt AC 461 ms 195968 KB
042.txt AC 448 ms 195968 KB
043.txt AC 448 ms 195968 KB
044.txt AC 447 ms 195968 KB
045.txt AC 448 ms 195968 KB
046.txt AC 448 ms 195968 KB
047.txt AC 448 ms 195968 KB
048.txt AC 448 ms 195968 KB
049.txt AC 448 ms 195968 KB
example0.txt AC 448 ms 195968 KB
example1.txt AC 448 ms 195968 KB