結果

問題 No.1043 直列大学
ユーザー erbowlerbowl
提出日時 2020-05-05 12:07:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 205,972 KB
実行使用メモリ 162,076 KB
最終ジャッジ日時 2024-06-26 06:03:37
合計ジャッジ時間 6,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
8,692 KB
testcase_01 AC 8 ms
7,144 KB
testcase_02 AC 16 ms
13,348 KB
testcase_03 AC 8 ms
7,144 KB
testcase_04 AC 8 ms
7,144 KB
testcase_05 AC 9 ms
7,144 KB
testcase_06 AC 8 ms
7,140 KB
testcase_07 AC 11 ms
10,248 KB
testcase_08 AC 11 ms
10,252 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 159 ms
148,840 KB
testcase_12 WA -
testcase_13 AC 142 ms
135,484 KB
testcase_14 AC 152 ms
143,296 KB
testcase_15 AC 166 ms
156,652 KB
testcase_16 AC 149 ms
140,204 KB
testcase_17 AC 111 ms
103,372 KB
testcase_18 WA -
testcase_19 AC 140 ms
132,456 KB
testcase_20 AC 110 ms
101,008 KB
testcase_21 AC 129 ms
122,188 KB
testcase_22 AC 136 ms
127,724 KB
testcase_23 AC 169 ms
160,520 KB
testcase_24 AC 121 ms
113,580 KB
testcase_25 AC 141 ms
133,984 KB
testcase_26 AC 151 ms
143,356 KB
testcase_27 AC 78 ms
71,280 KB
testcase_28 AC 140 ms
132,316 KB
testcase_29 AC 48 ms
44,704 KB
testcase_30 AC 106 ms
100,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
ll const MOD = 1e9+7;
int main() {
    ll n,m;
    std::cin >> n>>m;
    
    vector<ll> v(n),r(m);
    for (int i = 0; i < n; i++) {
        std::cin >> v[i];
    }
    for (int i = 0; i < m; i++) {
        std::cin >> r[i];
    }
    
    ll a,b;
    std::cin >> a>>b;
    
    vector<vector<ll>> dpv(n+1,vector<ll>(100010,0));
    vector<vector<ll>> dpr(m+1,vector<ll>(100010,0));
    dpv[0][0]++;
    dpr[0][0]++;
    
    for (int i = 0; i < n; i++) {
        for (int j = 0; j <= 100000; j++) {
            dpv[i+1][j] = dpv[i][j];
            if(j-v[i]>=0) dpv[i+1][j] += dpv[i][j-v[i]];
            dpv[i+1][j] %= MOD;
        }
    }
    for (int i = 0; i < m; i++) {
        for (int j = 0; j <= 100000; j++) {
            dpr[i+1][j] = dpr[i][j];
            if(j-r[i]>=0) dpr[i+1][j] += dpr[i][j-r[i]];
            dpr[i+1][j] %= MOD;
        }
    }

    vector<ll> rui(100010,0);
    
    for (int i = 1; i <= 100000; i++) {
        rui[i+1] = rui[i] + dpr[m][i];
    }
    ll ans = 0;
    for (int i = 1; i <= 100000; i++) {
        ans += dpv[n][i]*(rui[i/a+1]-rui[(i+b-1)/b]);
        ans %= MOD;
    }
    
    std::cout << ans << std::endl;}
0