Submission #1017321


Source Code Expand

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

const int M = 100005;
const ll p = 1e9+7;

ll n, a, b, c;
ll fact[M], invfact[M];
ll tot = 0;

ll exp(ll x, ll k) {
	if (k == 0)
		return 1;
	ll y = exp(x, k/2);
	if (k%2 == 0)
		return y*y%p;
	else
		return y*y%p*x%p;
}

ll inv(ll x) { return exp(x, p-2); }

ll binom(ll x, ll y) {
	if (y == 0)
		return 1;
	if (x < y || x < 0 || y < 0)
		return 0;
	return fact[x]*invfact[y]%p*invfact[x-y]%p;
}

int main() {
	cin >> n >> a >> b >> c;
	if (b%2 == 1) {
		cout << "0\n"; return 0;
	}

	fact[0] = invfact[0] = 1;
	for (int i = 1; i < M; ++i) {
		fact[i] = i*fact[i-1]%p;
		invfact[i] = inv(fact[i]);
	}

	for (int i = a+b/2; i <= n; ++i) {
		ll ct = binom(i, b/2)*binom(i-b/2, a)%p;
		ll d = c-3*(i-b/2-a);
		if (d < 0)
			continue;
		ll sum = 0;
		for (int j = 0; j <= d; ++j)
			sum = (sum + binom(b/2+j-1, j)*binom(a, d-j))%p;
		tot = (tot + sum*ct)%p;
	}

	cout << tot << endl;
}

Submission Info

Submission Time
Task J - 123 Pairs
User desert97
Language C++14 (GCC 5.4.1)
Score 1500
Code Size 1008 Byte
Status AC
Exec Time 67 ms
Memory 1792 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 37 ms 1792 KB
001.txt AC 67 ms 1792 KB
002.txt AC 30 ms 1792 KB
003.txt AC 32 ms 1792 KB
004.txt AC 67 ms 1792 KB
005.txt AC 31 ms 1792 KB
006.txt AC 30 ms 1792 KB
007.txt AC 56 ms 1792 KB
008.txt AC 30 ms 1792 KB
009.txt AC 30 ms 1792 KB
010.txt AC 30 ms 1792 KB
011.txt AC 30 ms 1792 KB
012.txt AC 56 ms 1792 KB
013.txt AC 30 ms 1792 KB
014.txt AC 30 ms 1792 KB
015.txt AC 43 ms 1792 KB
016.txt AC 32 ms 1792 KB
017.txt AC 33 ms 1792 KB
018.txt AC 31 ms 1792 KB
019.txt AC 36 ms 1792 KB
020.txt AC 31 ms 1792 KB
021.txt AC 44 ms 1792 KB
022.txt AC 31 ms 1792 KB
023.txt AC 32 ms 1792 KB
024.txt AC 48 ms 1792 KB
025.txt AC 32 ms 1792 KB
026.txt AC 35 ms 1792 KB
027.txt AC 38 ms 1792 KB
028.txt AC 33 ms 1792 KB
029.txt AC 34 ms 1792 KB
030.txt AC 59 ms 1792 KB
031.txt AC 41 ms 1792 KB
032.txt AC 31 ms 1792 KB
033.txt AC 3 ms 256 KB
034.txt AC 44 ms 1792 KB
035.txt AC 34 ms 1792 KB
036.txt AC 31 ms 1792 KB
037.txt AC 30 ms 1792 KB
038.txt AC 54 ms 1792 KB
039.txt AC 2 ms 256 KB
040.txt AC 3 ms 256 KB
041.txt AC 53 ms 1792 KB
042.txt AC 30 ms 1792 KB
043.txt AC 30 ms 1792 KB
044.txt AC 30 ms 1792 KB
045.txt AC 30 ms 1792 KB
046.txt AC 30 ms 1792 KB
047.txt AC 30 ms 1792 KB
048.txt AC 30 ms 1792 KB
049.txt AC 30 ms 1792 KB
example0.txt AC 30 ms 1792 KB
example1.txt AC 30 ms 1792 KB