結果

問題 No.1043 直列大学
ユーザー HaaHaa
提出日時 2020-05-01 22:06:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 169,228 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 09:17:30
合計ジャッジ時間 3,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 26 ms
5,376 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 39 ms
5,376 KB
testcase_16 AC 35 ms
5,376 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 27 ms
5,376 KB
testcase_19 AC 34 ms
5,376 KB
testcase_20 AC 26 ms
5,376 KB
testcase_21 AC 31 ms
5,376 KB
testcase_22 AC 32 ms
5,376 KB
testcase_23 AC 40 ms
5,376 KB
testcase_24 AC 29 ms
5,376 KB
testcase_25 AC 35 ms
5,376 KB
testcase_26 AC 36 ms
5,376 KB
testcase_27 AC 20 ms
5,376 KB
testcase_28 AC 35 ms
5,376 KB
testcase_29 AC 13 ms
5,376 KB
testcase_30 AC 26 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 2147483647;
const ll LINF = 9223372036854775807;
#define REP(i, n) for (int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

const int MAX=100001;

int main() {
	int n, m; cin >> n >> m;
	VI v(n), r(m);
	REP(i,n) cin >> v[i];
	REP(i,m) cin >> r[i];
	int a, b; cin >> a >> b;
	VI pv(MAX+1,0), pr(MAX+1,0); 
	pv[0]=1; pr[0]=1;
	REP(i,n)for(int j=MAX;j>=v[i];j--){
			pv[j]+=pv[j-v[i]];
			pv[j]%=MOD;
	}
	REP(i,m)for(int j=MAX;j>=r[i];j--){
			pr[j]+=pr[j-r[i]];
			pr[j]%=MOD;
	}
	REP(i,MAX){
		pv[i+1]+=pv[i];
		pv[i+1]%=MOD;
	}
	ll ans=0;
	for(int i=1;i<=MAX;i++){
		if(pr[i]==0) continue;
		ll l=a*i, rr=min(MAX,b*i);
		if(l>MAX) break;
		ans+=pr[i]*(pv[rr]-pv[l-1]);
		ans%=MOD;
	}
	cout << ans << endl;
	return 0;
}
0