結果

問題 No.1043 直列大学
ユーザー Ricky_ponRicky_pon
提出日時 2019-11-14 00:47:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,783 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 169,012 KB
実行使用メモリ 175,400 KB
最終ジャッジ日時 2024-11-23 05:18:21
合計ジャッジ時間 11,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
18,120 KB
testcase_01 AC 4 ms
7,368 KB
testcase_02 AC 7 ms
18,288 KB
testcase_03 AC 4 ms
9,248 KB
testcase_04 AC 4 ms
10,096 KB
testcase_05 AC 4 ms
7,364 KB
testcase_06 AC 4 ms
7,372 KB
testcase_07 AC 6 ms
11,428 KB
testcase_08 AC 5 ms
11,192 KB
testcase_09 AC 114 ms
84,908 KB
testcase_10 AC 731 ms
101,888 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 63 ms
137,436 KB
testcase_14 AC 63 ms
144,548 KB
testcase_15 AC 71 ms
157,276 KB
testcase_16 AC 64 ms
142,052 KB
testcase_17 AC 48 ms
104,916 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 142 ms
122,296 KB
testcase_22 AC 136 ms
130,140 KB
testcase_23 AC 208 ms
161,768 KB
testcase_24 AC 49 ms
114,032 KB
testcase_25 AC 60 ms
133,348 KB
testcase_26 AC 64 ms
144,752 KB
testcase_27 TLE -
testcase_28 AC 61 ms
134,200 KB
testcase_29 AC 19 ms
47,656 KB
testcase_30 AC 48 ms
175,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(int (i)=(a); (i)<(b); ++(i))
#define rFor(i, a, b) for(int (i)=(a)-1; (i)>=(b); --(i))
#define rep(i, n) For((i), 0, (n))
#define rrep(i, n) rFor((i), (n), 0)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
typedef pair<int, int> pii;
typedef pair<lint, lint> pll;
typedef complex<double> xy_t;
typedef vector<lint> poly;

const lint mod = 1e9 + 7;
const lint INF = mod * mod;
const int MAX = 100010;

lint dpv[110][MAX], dpr[110][MAX];

int main(){
    int n, m;
    scanf("%d%d", &n, &m);
    int v[n], r[m];
    rep(i, n) scanf("%d", &v[i]);
    rep(i, m) scanf("%d", &r[i]);
    lint a, b;
    scanf("%lld%lld", &a, &b);

    rep(i, n+1)rep(j, MAX) dpv[i][j] = 0;
    rep(i, m+1)rep(j, MAX) dpr[i][j] = 0;
    dpv[0][0] = 1;
    rep(i, n)rep(j, MAX)if(dpv[i][j]){
        dpv[i+1][j] += dpv[i][j];
        if(dpv[i+1][j] >= mod) dpv[i+1][j] -= mod;
        if(j+v[i] < MAX){
            dpv[i+1][j+v[i]] += dpv[i][j];
            if(dpv[i+1][j+v[i]] >= mod) dpv[i+1][j+v[i]] -= mod;
        }
    }
    dpr[0][0] = 1;
    rep(i, m)rep(j, MAX)if(dpr[i][j]){
        dpr[i+1][j] += dpr[i][j];
        if(dpr[i+1][j] >= mod) dpr[i+1][j] -= mod;
        if(j+r[i] < MAX){
            dpr[i+1][j+r[i]] += dpr[i][j];
            if(dpr[i+1][j+r[i]] >= mod) dpr[i+1][j+r[i]] -= mod;
        }
    }

    lint vsum[MAX];
    vsum[0] = 0;
    rep(i, MAX-1) vsum[i+1] = (vsum[i] + dpv[n][i]) % mod;

    lint ans = 0;
    For(i, 1, MAX)if(dpr[m][i]){
        lint L = a*(lint)i, R = b*(lint)i + 1;
        if(L >= MAX) break;
        For(j, L, R){
            ans += dpv[n][j] * dpr[m][i];
            if(ans >= mod) ans %= mod;
        }
    }
    printf("%lld\n", ans);
}
0