Submission #1001145


Source Code Expand

#ifdef DEBUG
#define _GLIBCXX_DEBUG
#endif

#include <bits/stdc++.h>

using namespace std;

mt19937 mrand(random_device{} ()); 

int rnd(int x) {
  return mrand() % x;
}

typedef long double ld;
typedef long long ll;

#ifdef DEBUG
#define eprintf(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#else
#define eprintf(...) ;
#endif

#define pb push_back
#define mp make_pair
#define sz(x) ((int) (x).size())
#define TASK "text"

const int inf = (int) 1.01e9;
const ld eps = 1e-9;
const ld pi = acos((ld) -1.0);

const int mod = (int) 1e9 + 7;

void add(int &x, int y) {
  if ((x += y) >= mod) {
    x -= mod;
  }
}

int mult(int x, int y) {
  return (long long) x * y % mod;
}

int myPower(int x, int pw) {
  int res = 1;
  for (; pw; pw >>= 1) {
    if (pw & 1) {
      res = mult(res, x);
    }
    x = mult(x, x);
  }
  return res;
}

const int maxn = (int) 1e4 + 10;
int fact[maxn], ifact[maxn];

void precalc() {
  fact[0] = ifact[0] = 1;
  for (int i = 1; i < maxn; ++i) {
    fact[i] = mult(fact[i - 1], i);
    ifact[i] = mult(ifact[i - 1], myPower(i, mod - 2));
  }
}

int n, a, b, c;

int read() {
  if (scanf("%d%d%d%d", &n, &a, &b, &c) < 4) {
    return 0;
  }
  return 1;
}

void solve() {
  if (b & 1) {
    printf("0\n");
    return;
  }
  int b2 = b / 2;

  int res = 0;
  for (int x = 0; x <= a; ++x) {
    for (int y = 0;; ++y) {
      int left = c - (3 * y + a - x);
      if (left < 0) {
        break;
      }
      int cur = 1;
      cur = mult(cur, fact[a + y + b2]);
      cur = mult(cur, ifact[x]);
      cur = mult(cur, ifact[a - x]);
      cur = mult(cur, ifact[y]);
      cur = mult(cur, ifact[b2]);
      if (b2 == 0) {
        if (left != 0) {
          cur = 0;
        }
      } else {
        cur = mult(cur, fact[left + b2 - 1]);
        cur = mult(cur, ifact[b2 - 1]);
        cur = mult(cur, ifact[left]);
      }
      add(res, cur);
    }
  }
  printf("%d\n", res);
}

int main() {
  precalc();
#ifdef LOCAL
  freopen(TASK ".out", "w", stdout);
  assert(freopen(TASK ".in", "r", stdin));
#endif

  while (1) {
    if (!read()) {
      break;
    }
    solve();
#ifdef DEBUG
    eprintf("Time %.2f\n", (double) clock() / CLOCKS_PER_SEC);
#endif
  }
  return 0;
}

Submission Info

Submission Time
Task J - 123 Pairs
User XraY
Language C++14 (GCC 5.4.1)
Score 1500
Code Size 2329 Byte
Status AC
Exec Time 25 ms
Memory 384 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 14 ms 384 KB
001.txt AC 4 ms 384 KB
002.txt AC 4 ms 384 KB
003.txt AC 4 ms 384 KB
004.txt AC 4 ms 384 KB
005.txt AC 4 ms 384 KB
006.txt AC 4 ms 384 KB
007.txt AC 4 ms 384 KB
008.txt AC 4 ms 384 KB
009.txt AC 4 ms 384 KB
010.txt AC 4 ms 384 KB
011.txt AC 4 ms 384 KB
012.txt AC 4 ms 256 KB
013.txt AC 4 ms 384 KB
014.txt AC 4 ms 384 KB
015.txt AC 20 ms 384 KB
016.txt AC 5 ms 384 KB
017.txt AC 9 ms 256 KB
018.txt AC 5 ms 384 KB
019.txt AC 9 ms 256 KB
020.txt AC 6 ms 384 KB
021.txt AC 18 ms 384 KB
022.txt AC 6 ms 384 KB
023.txt AC 7 ms 256 KB
024.txt AC 19 ms 384 KB
025.txt AC 6 ms 256 KB
026.txt AC 13 ms 384 KB
027.txt AC 18 ms 384 KB
028.txt AC 9 ms 384 KB
029.txt AC 11 ms 256 KB
030.txt AC 17 ms 256 KB
031.txt AC 19 ms 384 KB
032.txt AC 5 ms 384 KB
033.txt AC 4 ms 384 KB
034.txt AC 10 ms 384 KB
035.txt AC 11 ms 384 KB
036.txt AC 5 ms 384 KB
037.txt AC 4 ms 384 KB
038.txt AC 25 ms 384 KB
039.txt AC 4 ms 384 KB
040.txt AC 4 ms 384 KB
041.txt AC 8 ms 384 KB
042.txt AC 4 ms 384 KB
043.txt AC 4 ms 384 KB
044.txt AC 4 ms 256 KB
045.txt AC 4 ms 384 KB
046.txt AC 4 ms 256 KB
047.txt AC 4 ms 384 KB
048.txt AC 4 ms 384 KB
049.txt AC 4 ms 384 KB
example0.txt AC 4 ms 384 KB
example1.txt AC 4 ms 256 KB