結果

問題 No.1043 直列大学
ユーザー motmot
提出日時 2020-05-01 22:21:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,068 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 85,460 KB
実行使用メモリ 162,896 KB
最終ジャッジ日時 2024-06-07 10:17:48
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 7 ms
12,972 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 6 ms
10,496 KB
testcase_08 AC 6 ms
9,632 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 88 ms
147,788 KB
testcase_12 RE -
testcase_13 AC 79 ms
133,788 KB
testcase_14 AC 84 ms
143,312 KB
testcase_15 AC 91 ms
155,388 KB
testcase_16 AC 82 ms
140,320 KB
testcase_17 AC 60 ms
103,952 KB
testcase_18 WA -
testcase_19 AC 76 ms
131,576 KB
testcase_20 AC 58 ms
101,712 KB
testcase_21 AC 71 ms
121,016 KB
testcase_22 AC 73 ms
130,512 KB
testcase_23 AC 95 ms
158,540 KB
testcase_24 AC 66 ms
112,460 KB
testcase_25 AC 78 ms
134,476 KB
testcase_26 AC 83 ms
141,736 KB
testcase_27 AC 41 ms
70,996 KB
testcase_28 AC 77 ms
130,576 KB
testcase_29 AC 26 ms
43,080 KB
testcase_30 AC 58 ms
100,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define mp make_pair
const int inf=1e9+7;
const ll mod=1e9+7;

ll VDP[105][100005];
ll RDP[105][100005];

int main() {
    int N, M;
    cin>>N>>M;
    vector<ll> V(N), R(M);
    for(int i=0;i<N;++i){
        cin>>V[i];
    }
    for(int i=0;i<M;++i){
        cin>>R[i];
    }
    int A, B;
    cin>>A>>B;
    VDP[0][V[0]] = 1;
    RDP[0][R[0]] = 1;
    for(int i=1;i<N;++i){
        for(int j=1;j<=100000;++j){
            if(V[i]<=j){
                if(V[i]==j){
                    VDP[i][j] = VDP[i-1][j] + 1;
                }
                else{
                    VDP[i][j] = VDP[i-1][j] + VDP[i-1][j-V[i]];
                }
            }
            else{
                VDP[i][j] = VDP[i-1][j];
            }
            VDP[i][j] %= mod;
        }
    }
    for(int i=1;i<M;++i){
        for(int j=1;j<=100000;++j){
            if(R[i]<=j){
                if(R[i]==j){
                    RDP[i][j] = RDP[i-1][j] + 1;
                }
                else{
                    RDP[i][j] = RDP[i-1][j] + RDP[i-1][j-R[i]];
                }
            }
            else{
                RDP[i][j] = RDP[i-1][j];
            }
            RDP[i][j] %= mod;
        }
    }
    for(int i=1;i<100003;++i){
        VDP[N-1][i] += VDP[N-1][i-1];
        //RDP[i] += RDP[i-1];
    }
    /**
    for(int i=0;i<N;++i){
        for(int j=0;j<100;++j){
            cout<<VDP[i][j]<<" ";
        }
        cout<<endl;
    }
    cout<<endl;
    **/
    ll ans = 0;
    for(int i=1;i<=100000;++i){
        if(i*A>100000) break;
        if(i*B>100000){
            ans += ((VDP[N-1][100002] - VDP[N-1][i*A-1]) * RDP[M-1][i]) % mod;
            ans %= mod;
        }
        else{
            ans += ((VDP[N-1][i*B] - VDP[N-1][i*A-1]) * RDP[M-1][i]) % mod;
            ans %= mod;
        }
    }
    cout<<ans<<endl;
}
0