結果

問題 No.612 Move on grid
ユーザー kk
提出日時 2021-04-02 21:43:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 2,500 ms
コード長 1,519 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 202,392 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-06-06 06:34:28
合計ジャッジ時間 5,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 52 ms
27,136 KB
testcase_04 AC 210 ms
101,248 KB
testcase_05 AC 234 ms
101,248 KB
testcase_06 AC 239 ms
101,376 KB
testcase_07 AC 216 ms
101,376 KB
testcase_08 AC 239 ms
101,376 KB
testcase_09 AC 224 ms
101,248 KB
testcase_10 AC 139 ms
64,512 KB
testcase_11 AC 65 ms
32,512 KB
testcase_12 AC 171 ms
76,288 KB
testcase_13 AC 92 ms
44,416 KB
testcase_14 AC 204 ms
88,192 KB
testcase_15 AC 69 ms
34,176 KB
testcase_16 AC 217 ms
100,096 KB
testcase_17 AC 94 ms
46,208 KB
testcase_18 AC 203 ms
89,984 KB
testcase_19 AC 146 ms
70,528 KB
testcase_20 AC 199 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int MOD = 1e9 + 7;
const int ZERO = 25000;
int dp[501][50000];
long long f[501], g[501];

long long modpow(long long x, long long p, long long mod) {
  long long ret = 1;
  while (p) {
    if (p & 1)
      ret = ret * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return ret;
}

long long comb(int n, int k) {
  return f[n] * g[n-k] % MOD * g[k] % MOD;
}

void init() {
  f[0] = g[0] = 1;
  for (int i = 1; i <= 500; i++) {
    f[i] = f[i-1] * i % MOD;
    g[i] = modpow(f[i], MOD-2, MOD);
  }
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  init();
  
  int T, a, b, c, d, e;
  cin >> T >> a >> b >> c >> d >> e;

  dp[0][ZERO] = 1;
  for (int t = 0; t < T; t++) {
    for (int i = 0; i < 50000; i++) {
      if (dp[t][i]) {
        (dp[t+1][i-b] += dp[t][i]) %= MOD;
        (dp[t+1][i+b] += dp[t][i]) %= MOD;
        (dp[t+1][i-c] += dp[t][i]) %= MOD;
        (dp[t+1][i+c] += dp[t][i]) %= MOD;
      }
    }
  }

  for (int t = 0; t <= T; t++) {
    for (int i = 1; i < 50000; i++)
      dp[t][i] = (dp[t][i] + dp[t][i-1]) % MOD;
  }

  long long ret = 0;
  for (int l = 0; l <= T; l++) {
    for (int r = 0; l + r <= T; r++) {
      int x = r - l;
      long long tmp = dp[T - l - r][ZERO + e - a * x] - dp[T - l - r][ZERO + d - a * x - 1];
      if (tmp < 0)
        tmp += MOD;
      tmp = tmp * comb(T, l) % MOD;
      tmp = tmp * comb(T-l, r) % MOD;
      ret += tmp;
      ret %= MOD;
    }
  }

  cout << ret << endl;
  
  return 0;
}
0