Submission #1001101


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ld = long double;
using D = double;
using uint = unsigned int;

#ifdef WIN32
    #define LLD "%I64d"
#else
    #define LLD "%lld"
#endif

#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second

const int maxn = 5005;
const int MOD = 1000000007;

int cnk[maxn][maxn];
int A, B, C;
int n;

ll get(ll a, ll b)
{
    if (a == 0 && b > 0) return 0;
    if (a == 0 && b == 0) return 1;
    return cnk[a + b - 1][a - 1];
}

ll calc(ll a, ll b, ll c, ll d)
{
//     cout << "calc " << a << ' ' << b << ' ' << c << ' ' << d << ' ' << endl;
    if (d < 0) return 0;
    if (a + b + c + d > n) return 0;
    return (((ll)cnk[a + b][b] * cnk[a + b + c][c]) % MOD * cnk[a + b + c + d][d]) % MOD;
}

int main()
{
    scanf("%d%d%d%d", &n, &A, &B, &C);
    if (B % 2 == 1)
    {
        cout << 0 << endl;
        return 0;
    }
    cnk[0][0] = 1;
    for (int i = 1; i <= n; i++)
    {
        cnk[i][0] = 1;
        for (int j = 1; j <= i; j++) cnk[i][j] = (cnk[i - 1][j - 1] + cnk[i - 1][j]) % MOD;
    }
    ll answer = 0;
    for (int x = 0; x <= C; x++)
    {
        for (int y = 0; 3 * y + x <= C; y++)
        {
            ll curans = calc(B / 2, y, C - 3 * y - x, A - (C - 3 * y - x));
//             cout << x << ' ' << y << ' ' << curans << endl;
            curans = ((ll)curans * get(B / 2, x)) % MOD;
//             cout << curans << endl;
            answer = (answer + curans) % MOD;
        }
    }
    cout << answer << endl;
    return 0;
}

Submission Info

Submission Time
Task J - 123 Pairs
User KAN
Language C++14 (GCC 5.4.1)
Score 1500
Code Size 1653 Byte
Status AC
Exec Time 118 ms
Memory 67200 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:46:38: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d%d", &n, &A, &B, &C);
                                      ^

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 92 ms 66944 KB
001.txt AC 96 ms 67072 KB
002.txt AC 78 ms 67072 KB
003.txt AC 78 ms 67072 KB
004.txt AC 101 ms 67072 KB
005.txt AC 86 ms 67072 KB
006.txt AC 86 ms 67072 KB
007.txt AC 103 ms 67072 KB
008.txt AC 86 ms 67072 KB
009.txt AC 86 ms 67072 KB
010.txt AC 85 ms 66688 KB
011.txt AC 79 ms 65536 KB
012.txt AC 93 ms 66304 KB
013.txt AC 6 ms 4224 KB
014.txt AC 6 ms 4224 KB
015.txt AC 93 ms 60800 KB
016.txt AC 17 ms 11264 KB
017.txt AC 39 ms 29056 KB
018.txt AC 14 ms 10112 KB
019.txt AC 47 ms 35584 KB
020.txt AC 53 ms 39552 KB
021.txt AC 105 ms 65792 KB
022.txt AC 71 ms 54400 KB
023.txt AC 89 ms 67072 KB
024.txt AC 108 ms 67072 KB
025.txt AC 88 ms 67072 KB
026.txt AC 98 ms 67072 KB
027.txt AC 104 ms 67072 KB
028.txt AC 93 ms 67072 KB
029.txt AC 94 ms 67200 KB
030.txt AC 107 ms 67072 KB
031.txt AC 106 ms 67072 KB
032.txt AC 87 ms 67072 KB
033.txt AC 2 ms 256 KB
034.txt AC 56 ms 36352 KB
035.txt AC 81 ms 55936 KB
036.txt AC 46 ms 35200 KB
037.txt AC 3 ms 512 KB
038.txt AC 118 ms 67072 KB
039.txt AC 2 ms 256 KB
040.txt AC 3 ms 256 KB
041.txt AC 98 ms 67072 KB
042.txt AC 86 ms 67072 KB
043.txt AC 2 ms 256 KB
044.txt AC 3 ms 256 KB
045.txt AC 2 ms 256 KB
046.txt AC 3 ms 256 KB
047.txt AC 3 ms 256 KB
048.txt AC 2 ms 256 KB
049.txt AC 3 ms 256 KB
example0.txt AC 3 ms 256 KB
example1.txt AC 5 ms 3328 KB