結果
問題 | No.612 Move on grid |
ユーザー |
|
提出日時 | 2023-06-17 18:34:25 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 35 ms / 2,500 ms |
コード長 | 753 bytes |
コンパイル時間 | 3,970 ms |
コンパイル使用メモリ | 232,264 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-25 08:39:55 |
合計ジャッジ時間 | 4,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using mint = atcoder::modint1000000007; int main(){ int T, a, b, c, d, e, D; cin >> T >> a >> b >> c >> d >> e; D = max({a, -a, b, -b, c, -c}); vector<mint> dp1(20001), dp2(20001); auto dp = dp1.begin() + 10000, ndp = dp2.begin() + 10000; dp[0] = 1; for(int i = 0; i < T; i++){ for(int r = i * D, j = -r; j <= r; j++){ ndp[j - a] += dp[j]; ndp[j + a] += dp[j]; ndp[j - b] += dp[j]; ndp[j + b] += dp[j]; ndp[j - c] += dp[j]; ndp[j + c] += dp[j]; dp[j] = 0; } swap(dp, ndp); } cout << accumulate(dp + d, dp + e + 1, mint(0)).val() << '\n'; }