結果

問題 No.612 Move on grid
ユーザー pekempeypekempey
提出日時 2017-12-12 00:04:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 776 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 71,180 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-05-08 00:03:51
合計ジャッジ時間 3,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 35 ms
22,656 KB
testcase_04 WA -
testcase_05 AC 127 ms
83,456 KB
testcase_06 AC 126 ms
83,584 KB
testcase_07 WA -
testcase_08 AC 127 ms
83,456 KB
testcase_09 AC 124 ms
83,456 KB
testcase_10 AC 79 ms
53,504 KB
testcase_11 AC 39 ms
27,136 KB
testcase_12 AC 92 ms
62,976 KB
testcase_13 AC 53 ms
36,864 KB
testcase_14 AC 105 ms
72,832 KB
testcase_15 AC 40 ms
28,672 KB
testcase_16 AC 121 ms
82,560 KB
testcase_17 AC 56 ms
38,272 KB
testcase_18 AC 110 ms
74,240 KB
testcase_19 AC 86 ms
58,240 KB
testcase_20 AC 119 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

// 20 * 500 * 2

const long long mod = 1e9 + 7;

long long dp[501][22020];

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

int main() {
  int n;
  cin >> n;

  int a, b, c, d, e;
  cin >> a >> b >> c >> d >> e;

  dp[0][10000] = 1;

  for (int i = 0; i < n; i++) {
    for (int j = 50; j < 20000; j++) {
      to(dp[i + 1][j + a], dp[i][j]);
      to(dp[i + 1][j - a], dp[i][j]);
      to(dp[i + 1][j + b], dp[i][j]);
      to(dp[i + 1][j - b], dp[i][j]);
      to(dp[i + 1][j + c], dp[i][j]);
      to(dp[i + 1][j - c], dp[i][j]);
    }
  }

  long long ans = 0;
  for (int i = 10000 + d; i <= 10000 + e; i++) {
    to(ans, dp[n][i]);
  }
  cout << ans << endl;
}
0