結果

問題 No.1043 直列大学
ユーザー auauaauaua
提出日時 2020-05-01 22:46:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 1,580 ms
コンパイル使用メモリ 173,940 KB
実行使用メモリ 162,076 KB
最終ジャッジ日時 2024-06-02 02:58:15
合計ジャッジ時間 4,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,796 KB
testcase_01 AC 5 ms
7,076 KB
testcase_02 AC 11 ms
13,352 KB
testcase_03 AC 5 ms
7,272 KB
testcase_04 AC 6 ms
7,100 KB
testcase_05 AC 6 ms
7,144 KB
testcase_06 AC 6 ms
7,144 KB
testcase_07 AC 8 ms
10,248 KB
testcase_08 AC 8 ms
10,248 KB
testcase_09 AC 68 ms
83,836 KB
testcase_10 AC 83 ms
99,496 KB
testcase_11 AC 122 ms
148,844 KB
testcase_12 AC 143 ms
162,076 KB
testcase_13 AC 120 ms
135,544 KB
testcase_14 AC 127 ms
143,292 KB
testcase_15 AC 140 ms
156,652 KB
testcase_16 AC 123 ms
140,204 KB
testcase_17 AC 91 ms
103,372 KB
testcase_18 AC 90 ms
103,432 KB
testcase_19 AC 117 ms
132,460 KB
testcase_20 AC 87 ms
101,004 KB
testcase_21 AC 107 ms
122,316 KB
testcase_22 AC 113 ms
127,644 KB
testcase_23 AC 143 ms
160,524 KB
testcase_24 AC 99 ms
113,580 KB
testcase_25 AC 116 ms
134,108 KB
testcase_26 AC 127 ms
143,356 KB
testcase_27 AC 64 ms
71,276 KB
testcase_28 AC 113 ms
132,316 KB
testcase_29 AC 38 ms
44,696 KB
testcase_30 AC 89 ms
100,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<unordered_set>
#include<unordered_map>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
typedef long long ll;
typedef pair<ll,ll> pll;
typedef long double ld;
const ll inf=1e9+7;
const ll mod=1e9+7;
signed main(){
    ll n,m;cin>>n>>m;
    vector<ll>v(n);
    vector<ll>r(m);
    rep(i,n)cin>>v[i];
    rep(i,m)cin>>r[i];
    ll a,b;cin>>a>>b;
    vector<vector<ll> >dp(n+1,vector<ll>(100010));
    vector<vector<ll> >dp2(m+1,vector<ll>(100010));
    dp[0][0]=1;
    rep(i,n){
        rep(j,100010){
            if(dp[i][j]==0)continue;
            dp[i+1][j]=(dp[i+1][j]+dp[i][j])%mod;
            dp[i+1][j+v[i]]=(dp[i+1][j+v[i]]+dp[i][j])%mod;
        }
    }
    dp2[0][0]=1;
    rep(i,m){
        rep(j,100010){
            if(dp2[i][j]==0)continue;{
                dp2[i+1][j]=(dp2[i+1][j]+dp2[i][j])%mod;
                dp2[i+1][j+r[i]]=(dp2[i+1][j+r[i]]+dp2[i][j])%mod;
            }
        }
    }
    REP(i,1,100001){
        dp[n][i]=(dp[n][i]+dp[n][i-1])%mod;
    }
    ll ans=0;
    REP(i,1,100001){
        ll c=dp2[m][i];
        ll d;
        if(i*a>100000)d=0;
        else{
            if(i*b>100000)d=(dp[n][100000]-dp[n][a*i-1])%mod;
            else d=(dp[n][b*i]-dp[n][a*i-1])%mod;
        }
        ans=(ans+c*d%mod)%mod;
    }
    if(ans<0)ans+=mod;
    cout<<ans<<endl;
}
0