結果
問題 | No.1043 直列大学 |
ユーザー | eQe |
提出日時 | 2020-05-01 22:13:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,158 bytes |
コンパイル時間 | 2,235 ms |
コンパイル使用メモリ | 158,832 KB |
実行使用メモリ | 162,048 KB |
最終ジャッジ日時 | 2024-06-07 09:44:48 |
合計ジャッジ時間 | 3,608 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
7,424 KB |
testcase_01 | AC | 6 ms
5,760 KB |
testcase_02 | AC | 10 ms
12,160 KB |
testcase_03 | AC | 6 ms
5,888 KB |
testcase_04 | AC | 7 ms
5,888 KB |
testcase_05 | AC | 7 ms
5,888 KB |
testcase_06 | AC | 6 ms
5,888 KB |
testcase_07 | AC | 8 ms
8,832 KB |
testcase_08 | AC | 7 ms
8,960 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 62 ms
142,976 KB |
testcase_15 | AC | 68 ms
156,416 KB |
testcase_16 | AC | 61 ms
139,776 KB |
testcase_17 | AC | 46 ms
102,912 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 44 ms
100,608 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 33 ms
70,528 KB |
testcase_28 | WA | - |
testcase_29 | AC | 22 ms
43,776 KB |
testcase_30 | AC | 44 ms
99,712 KB |
ソースコード
#include <bits/stdc++.h> #include <string> #define ft first #define sc second #define pt(sth) cout << sth << "\n" #define chmax(a, b) (a)=max(a, b) #define chmin(a, b) (a)=min(a, b) #define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD using namespace std; typedef long long ll; typedef pair<ll, ll> pll; static const ll INF=1e18; static const ll MAX=101010; static const ll MOD=1e9+7; /* for(i=0; i<N; i++) cin >> a[i]; */ ll dp[111][MAX]; ll ep[111][MAX]; int main(void) { ll i, j, k; ll N, M; ll v[111], r[111]; ll A, B; cin >> N >> M; for(i=0; i<N; i++) cin >> v[i]; for(i=0; i<M; i++) cin >> r[i]; cin >> A >> B; dp[0][0]=1; for(i=0; i<N; i++) { for(j=0; j<MAX; j++) { dp[i+1][j]+=dp[i][j]; if(j+v[i]<MAX) dp[i+1][j+v[i]]+=dp[i][j]; } } ep[0][0]=1; for(i=0; i<M; i++) { for(j=0; j<MAX; j++) { ep[i+1][j]+=ep[i][j]; if(j+r[i]<MAX) ep[i+1][j+r[i]]+=ep[i][j]; } } ll s[MAX]={}; for(i=1; i<MAX; i++) s[i]=s[i-1]+ep[M][i]; ll ans=0; for(i=1; i<MAX; i++) { ll p=(i+B-1)/B; ll q=i/A; moC(ans, +, dp[N][i]*(s[q]-s[p-1])%MOD); } pt(ans); }