結果

問題 No.1043 直列大学
ユーザー roarisroaris
提出日時 2020-05-01 21:48:24
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,329 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 163,192 KB
実行使用メモリ 162,048 KB
最終ジャッジ日時 2024-11-30 17:54:01
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,960 KB
testcase_01 AC 5 ms
7,424 KB
testcase_02 AC 9 ms
13,568 KB
testcase_03 AC 6 ms
7,424 KB
testcase_04 AC 6 ms
7,424 KB
testcase_05 AC 5 ms
7,424 KB
testcase_06 AC 5 ms
7,424 KB
testcase_07 AC 8 ms
10,496 KB
testcase_08 AC 8 ms
10,496 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 116 ms
135,552 KB
testcase_14 AC 126 ms
143,360 KB
testcase_15 AC 145 ms
156,544 KB
testcase_16 AC 161 ms
140,160 KB
testcase_17 AC 70 ms
103,424 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 81 ms
122,112 KB
testcase_22 AC 87 ms
127,616 KB
testcase_23 WA -
testcase_24 AC 75 ms
113,536 KB
testcase_25 AC 88 ms
133,888 KB
testcase_26 AC 94 ms
143,488 KB
testcase_27 AC 47 ms
71,552 KB
testcase_28 AC 95 ms
132,352 KB
testcase_29 AC 35 ms
44,928 KB
testcase_30 AC 68 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long
const int MOD = 1000000007;

int N, M;
int V[110];
int R[110];
int A, B;
int dp1[110][100001];
int dp2[110][100001];

signed main() {
    cin >> N >> M;
    rep(i, N) cin >> V[i];
    rep(i, M) cin >> R[i];
    cin >> A >> B;
    
    rep(i, N) rep(j, 100001) dp1[i][j] = 0;
    dp1[0][0] = 1;
    rep(i, N) {
        rep(j, 100001) {
            dp1[i+1][j] += dp1[i][j];
            dp1[i+1][j] %= MOD;
            if (j+V[i]<100001) {
                dp1[i+1][j+V[i]] += dp1[i][j];
                dp1[i+1][j+V[i]] %= MOD;
            }
        }
    }
    
    int acc[100002];
    acc[0] = 0;
    rep(i, 100001) acc[i+1] = acc[i]+dp1[N][i];
    
    rep(i, M) rep(j, 100001) dp2[i][j] = 0;
    dp2[0][0] = 1;
    rep(i, M) {
        rep(j, 100001) {
            dp2[i+1][j] += dp2[i][j];
            dp2[i+1][j] %= MOD;
            if (j+R[i]<100001) {
                dp2[i+1][j+R[i]] += dp2[i][j];
                dp2[i+1][j+R[i]] %= MOD;
            }
        }
    }
    
    int ans = 0;
    for (int i=1; i<100001; i++) {
        if (i*A<=100000 && i*B<=100000) {
            ans += dp2[M][i]*(acc[i*B+1]-acc[i*A]);
            ans %= MOD;
        }
    }
    
    cout << ans << endl;
}
0