結果
問題 | No.1043 直列大学 |
ユーザー | Ackey_coder |
提出日時 | 2020-10-06 02:58:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,423 bytes |
コンパイル時間 | 1,687 ms |
コンパイル使用メモリ | 173,092 KB |
実行使用メモリ | 162,072 KB |
最終ジャッジ日時 | 2024-07-19 22:44:36 |
合計ジャッジ時間 | 14,557 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
8,700 KB |
testcase_01 | AC | 7 ms
7,148 KB |
testcase_02 | AC | 13 ms
13,348 KB |
testcase_03 | AC | 6 ms
7,140 KB |
testcase_04 | AC | 7 ms
7,192 KB |
testcase_05 | AC | 6 ms
7,144 KB |
testcase_06 | AC | 6 ms
7,184 KB |
testcase_07 | AC | 10 ms
10,252 KB |
testcase_08 | AC | 9 ms
10,120 KB |
testcase_09 | AC | 83 ms
83,784 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; constexpr ll mod = 1e9 + 7; constexpr ll INF = 1LL << 60; #define REP(i, init, n) for(int i = (int)(init); i < (int)(n); i++) #define vi vector<int> #define vl vector<long> #define vvi vector<vector<int>> #define vvl vector<vector<long>> #define pint pair<int, int> #define plong pair<long, long> int main() { int N, M, A, B; cin>> N >> M; vi V(N + 1, 0), R(M + 1, 0); REP(i, 1, N + 1) cin >> V[i]; REP(i, 1, M + 1) cin >> R[i]; cin >> A >> B; vvl DPV(N + 1, vl(100001, 0)); vvl DPR(M + 1, vl(100001, 0)); REP(i, 0, N + 1) DPV[i][0] = 1; REP(i, 0, M + 1) DPR[i][0] = 1; REP(j, 1, N + 1){ REP(i, 1, 100001){ if(i - V[j] >= 0) DPV[j][i] += DPV[j - 1][i - V[j]]; DPV[j][i] += DPV[j - 1][i]; DPV[j][i] %= mod; } } REP(j, 1, M + 1){ REP(i, 1, 100001){ if(i - R[j] >= 0) DPR[j][i] += DPR[j - 1][i - R[j]]; DPR[j][i] += DPR[j - 1][i]; DPR[j][i] %= mod; } } vl sum(100001, 0); long ans = 0; REP(i, 1, 100001){ sum[i] += DPV[M][i] + sum[i-1]; sum[i] %= mod; //if(i < 20) cout << sum[i] << " "; } REP(i, 1, 100001){ if(i * B <= 100000) ans += DPR[M][i] * (sum[i * B] - sum[i * A - 1]) + mod; ans %= mod; } cout << ans << endl; }