結果

問題 No.1043 直列大学
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-06-13 03:38:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 174,536 KB
実行使用メモリ 83,680 KB
最終ジャッジ日時 2024-12-22 20:09:05
合計ジャッジ時間 6,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,252 KB
testcase_01 AC 8 ms
6,816 KB
testcase_02 AC 15 ms
9,432 KB
testcase_03 AC 8 ms
6,820 KB
testcase_04 AC 7 ms
6,816 KB
testcase_05 AC 7 ms
6,816 KB
testcase_06 AC 8 ms
6,816 KB
testcase_07 AC 11 ms
7,896 KB
testcase_08 AC 12 ms
7,896 KB
testcase_09 AC 102 ms
44,756 KB
testcase_10 AC 116 ms
57,948 KB
testcase_11 AC 180 ms
78,940 KB
testcase_12 AC 198 ms
83,680 KB
testcase_13 AC 166 ms
81,664 KB
testcase_14 AC 177 ms
82,136 KB
testcase_15 AC 190 ms
80,876 KB
testcase_16 AC 169 ms
73,564 KB
testcase_17 AC 123 ms
60,244 KB
testcase_18 AC 123 ms
63,624 KB
testcase_19 AC 159 ms
80,872 KB
testcase_20 AC 119 ms
61,020 KB
testcase_21 AC 145 ms
79,308 KB
testcase_22 AC 151 ms
77,084 KB
testcase_23 AC 192 ms
82,908 KB
testcase_24 AC 136 ms
65,192 KB
testcase_25 AC 159 ms
73,820 KB
testcase_26 AC 175 ms
81,664 KB
testcase_27 AC 87 ms
51,672 KB
testcase_28 AC 161 ms
75,860 KB
testcase_29 AC 50 ms
29,020 KB
testcase_30 AC 116 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