結果

問題 No.612 Move on grid
ユーザー t98slidert98slider
提出日時 2023-06-17 18:28:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,500 ms
コード長 699 bytes
コンパイル時間 3,544 ms
コンパイル使用メモリ 229,200 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-07 14:39:02
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 3 ms
4,380 KB
testcase_04 AC 52 ms
4,376 KB
testcase_05 AC 46 ms
4,376 KB
testcase_06 AC 42 ms
4,376 KB
testcase_07 AC 49 ms
4,380 KB
testcase_08 AC 43 ms
4,380 KB
testcase_09 AC 20 ms
4,376 KB
testcase_10 AC 15 ms
4,376 KB
testcase_11 AC 5 ms
4,380 KB
testcase_12 AC 24 ms
4,380 KB
testcase_13 AC 9 ms
4,380 KB
testcase_14 AC 32 ms
4,376 KB
testcase_15 AC 5 ms
4,376 KB
testcase_16 AC 39 ms
4,376 KB
testcase_17 AC 9 ms
4,380 KB
testcase_18 AC 30 ms
4,380 KB
testcase_19 AC 18 ms
4,380 KB
testcase_20 AC 28 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint1000000007;

int main(){
    int T, d, e, D = 0;
    vector<int> a(3);
    cin >> T >> a[0] >> a[1] >> a[2] >> d >> e;
    for(auto v:a) D = max(D, abs(v));
    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 j = -i * D; j <= i * D; j++){
            for(auto &&v : a){
                ndp[j - v] += dp[j];
                ndp[j + v] += dp[j];
            }
            dp[j] = 0;
        }
        swap(dp, ndp);
    }
    cout << accumulate(dp + d, dp + e + 1, mint(0)).val() << '\n';
}
0