結果

問題 No.1043 直列大学
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-06-13 03:38:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 173,908 KB
実行使用メモリ 83,680 KB
最終ジャッジ日時 2024-06-02 03:19:42
合計ジャッジ時間 5,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,132 KB
testcase_01 AC 8 ms
6,364 KB
testcase_02 AC 16 ms
9,432 KB
testcase_03 AC 8 ms
6,360 KB
testcase_04 AC 8 ms
6,360 KB
testcase_05 AC 8 ms
6,492 KB
testcase_06 AC 8 ms
6,364 KB
testcase_07 AC 12 ms
8,020 KB
testcase_08 AC 12 ms
7,896 KB
testcase_09 AC 100 ms
44,508 KB
testcase_10 AC 119 ms
57,948 KB
testcase_11 AC 181 ms
78,940 KB
testcase_12 AC 194 ms
83,680 KB
testcase_13 AC 163 ms
81,664 KB
testcase_14 AC 171 ms
82,076 KB
testcase_15 AC 186 ms
80,748 KB
testcase_16 AC 170 ms
73,436 KB
testcase_17 AC 123 ms
60,248 KB
testcase_18 AC 125 ms
63,628 KB
testcase_19 AC 160 ms
80,768 KB
testcase_20 AC 122 ms
61,020 KB
testcase_21 AC 147 ms
79,308 KB
testcase_22 AC 155 ms
76,832 KB
testcase_23 AC 194 ms
82,912 KB
testcase_24 AC 135 ms
65,192 KB
testcase_25 AC 161 ms
73,820 KB
testcase_26 AC 173 ms
81,664 KB
testcase_27 AC 88 ms
51,676 KB
testcase_28 AC 158 ms
75,992 KB
testcase_29 AC 52 ms
29,016 KB
testcase_30 AC 123 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
const ll mod = 1e9 + 7;
const int MAX = 1e5 + 1;

vector<ll> do_dp(vector<int> a) {
    int n = a.size();
    vector<vector<ll>> dp(n + 1, vector<ll>(MAX)); //dp[i] := i個目まで見た時にjを作る個数
    dp[0][0] = 1;
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < MAX; j++) {
            dp[i + 1][j] += dp[i][j];
            dp[i + 1][j] %= mod;
            if(j + a[i] < MAX) {
                dp[i + 1][j + a[i]] += dp[i][j];
                dp[i + 1][j + a[i]] %= mod;
            }
        }
    }
    return dp[n];
}

int main()
{
    int n, m; cin >> n >> m;
    vector<int> v(n), r(m);
    for(int i = 0; i < n; i++)cin >> v[i];
    for(int i = 0; i < m; i++)cin >> r[i];
    vector<ll> vnum = do_dp(v), rnum = do_dp(r);

    vector<ll> vsum(MAX + 1);
    for(int i = 0; i < MAX; i++) {
        vsum[i + 1] += vsum[i] + vnum[i];
        vsum[i + 1] %= mod;
    }

    ll a, b; cin >> a >> b;
    ll ans = 0;

    for(int i = 0; i < MAX; i++) {
        ll lef = i * a, rig = i * b + 1;
        lef = min((ll)MAX, lef);
        rig = min((ll)MAX, rig);
        ll res = rnum[i] * (vsum[rig] - vsum[lef]);
        res %= mod;
        ans += res;
        ans %= mod;
    }
    cout << ((ans -1) % mod + mod) % mod << endl;
}
0