結果

問題 No.1043 直列大学
ユーザー taklimonetaklimone
提出日時 2020-05-01 22:00:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 1,472 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 201,852 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-06-02 02:50:19
合計ジャッジ時間 10,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
42,624 KB
testcase_01 AC 21 ms
30,332 KB
testcase_02 AC 48 ms
42,628 KB
testcase_03 AC 22 ms
30,336 KB
testcase_04 AC 19 ms
30,332 KB
testcase_05 AC 21 ms
32,380 KB
testcase_06 AC 20 ms
30,332 KB
testcase_07 AC 40 ms
42,624 KB
testcase_08 AC 41 ms
42,624 KB
testcase_09 AC 228 ms
42,752 KB
testcase_10 AC 259 ms
42,496 KB
testcase_11 AC 396 ms
42,500 KB
testcase_12 AC 428 ms
42,620 KB
testcase_13 AC 364 ms
42,620 KB
testcase_14 AC 367 ms
42,628 KB
testcase_15 AC 408 ms
42,500 KB
testcase_16 AC 367 ms
42,624 KB
testcase_17 AC 271 ms
42,624 KB
testcase_18 AC 277 ms
42,624 KB
testcase_19 AC 369 ms
42,620 KB
testcase_20 AC 280 ms
42,624 KB
testcase_21 AC 330 ms
42,620 KB
testcase_22 AC 338 ms
42,628 KB
testcase_23 AC 414 ms
42,496 KB
testcase_24 AC 303 ms
42,496 KB
testcase_25 AC 352 ms
42,624 KB
testcase_26 AC 382 ms
42,752 KB
testcase_27 AC 191 ms
42,620 KB
testcase_28 AC 347 ms
42,496 KB
testcase_29 AC 124 ms
42,748 KB
testcase_30 AC 278 ms
42,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int N, M;
long long V[110], R[100];
long long A, B;
long long v[2][1001001] = {}, r[2][1001001] = {}, sum[1001001] = {};
long long const mod = 1000000007;

void dp() {
    v[0][0] = true;
    for(int i=1; i<=N; ++i) {
        for(int j=0; j<=1000000; ++j) {
            if(j < V[i]) v[i & 1][j] = v[(i - 1) & 1][j];
            else v[i & 1][j] = (v[(i - 1) & 1][j] + v[(i - 1) & 1][j - V[i]]) % mod;
        }
    }

    r[0][0] = true;
    for(int i=1; i<=M; ++i) {
        for(int j=0; j<=1000000; ++j) {
            if(j < R[i]) r[i & 1][j] = r[(i - 1) & 1][j];
            else r[i & 1][j] = (r[(i - 1) & 1][j] + r[(i - 1) & 1][j - R[i]]) % mod;
        }
    }
}

void takesum() {
    for(int j=1; j<=1000000; ++j) {
        sum[j] = (sum[j - 1] + v[N & 1][j]) % mod;
    }
}

long long cnt(long long l, long long r) {
    if(l == 0 || r == 0) return 0;
    r = min(r, 1000000LL);
    l = min(l, 1000000LL);
    long long ret = sum[r] - sum[l - 1];
    if(ret < 0) ret = (ret + mod) % mod;
    return ret;
}

long long solve() {
    long long ret = 0;
    for(int j=1; j<=1000000; ++j) {
        long long s = r[M & 1][j];
        long long t = cnt(A * j, B * j);
        ret = (ret + s * t % mod) % mod;
    }
    return ret;
}

int main() {
    cin >> N >> M;
    for(int i=1; i<=N; ++i) cin >> V[i];
    for(int i=1; i<=M; ++i) cin >> R[i];
    cin >> A >> B;

    dp();
    takesum();
    cout << solve() << '\n';
}
0